Giter Club home page Giter Club logo

go-openai's People

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

go-openai's Issues

Fix the example usage

I'm trying to get started with the example from the readme file. I'm pretty sure that I'm providing the correct API key but it gives me the following error:

2023/01/12 02:32:32 error, status code: 401
exit status 1

The command below with the same API key gives me the status 200 OK.

curl https://api.openai.com/v1/completions \
-H "Content-Type: application/json" \
-H "Authorization: Bearer YOUR_API_KEY" \
-d '{"model": "text-davinci-003", "prompt": "Say this is a test", "temperature": 0, "max_tokens": 7}'

How to keep the context in the conversation

How to keep the context in the conversation

I'm trying to do a continuous question and answer session, but each time it's a new context and he can't analyze the question I asked earlier.

I think there should be an attribute like session_id, but there isn't, so how should I do it?



// CompletionRequest represents a request structure for completion API.
type CompletionRequest struct {
	Model            string         `json:"model"`
	Prompt           string         `json:"prompt,omitempty"`
	Suffix           string         `json:"suffix,omitempty"`
	MaxTokens        int            `json:"max_tokens,omitempty"`
	Temperature      float32        `json:"temperature,omitempty"`
	TopP             float32        `json:"top_p,omitempty"`
	N                int            `json:"n,omitempty"`
	Stream           bool           `json:"stream,omitempty"`
	LogProbs         int            `json:"logprobs,omitempty"`
	Echo             bool           `json:"echo,omitempty"`
	Stop             []string       `json:"stop,omitempty"`
	PresencePenalty  float32        `json:"presence_penalty,omitempty"`
	FrequencyPenalty float32        `json:"frequency_penalty,omitempty"`
	BestOf           int            `json:"best_of,omitempty"`
	LogitBias        map[string]int `json:"logit_bias,omitempty"`
	User             string         `json:"user,omitempty"`
}

This request body, none of which identifies the session attributes

API support for beta version

Hi Team,

I have tried to use the codex model, but there is no support for the beta version API. Do you guys think we should add support for the beta version API? I would be happy to help with this.

Introducing generics in a future version

Are you considering introducing generics in future releases?

If we introduce a generics:
Pros: sdk implementation will potentially become more elegant.
Cons: only support go1.8.0 or above, compatibility becomes worse.

Inconsistent results from GPT with temperature = 0

I am getting a wide variety of results from GPT, but my temperature is 0. I'm using a custom-trained model. I contacted GPT/openai, but their customer support seems to be inadequate.

req := gogpt.CompletionRequest{
	Model:       "davinci:ft-text-friday-2022-10-02-03-58-57",
	MaxTokens:   100, // 16 is default
	Prompt:      prompt,
	Temperature: 0,
	//TopP:             1,
	//FrequencyPenalty: 0,
	//PresencePenalty:  0,
	Stop: []string{" ->", ">>>"},
}

Example 1

 TRC Respond in JSON. I want to buy water. ->
8:02AM TRC GPT 5
8:02AM TRC GPT 6
8:02AM TRC GPT 6.a
8:02AM TRC returned: null
We'll update the last message sent to match the reply, and we'll update the request.id to say:
{ 'Store': 'water', 'Category': 'latest', 'Message': 'I want to buy water', 'Date': '2016-09-21T10:52:13', 'RequestId': '20', 'Reply': 'null', 'ArrivalDate': '2016-09-21T10:52:13'}

Example 2, sent seconds later

8:02AM TRC Respond in JSON. I want to buy water. ->
8:02AM TRC GPT 5
8:02AM TRC GPT 6
8:02AM TRC GPT 6.a
8:02AM TRC returned: {'Function': 'contact_support', 'Noun': 'water', 'Adjectives': [], 'Category': '', 'ClothingType': '', 'Quantity': 0, 'ArrivalDate': '', 'Store': '', 'MinPrice': 0, 'MaxPrice': 0, 'Multiple': False}

Expose APIError required

At present, I don't know how to get the original error message.
I need to make conditional judgments based on the original error code to do different things.

Please let me know if you have a solution, thanks

Use the new API URLs and deprecate the old endpoints

OpenAI's API has recently changed so API calls are made to endpoints such as /v1/completions for completions instead of /v1/engines/${engineID}/completions.

I'm currently migrating to using go-gpt3 instead of my own client, and would like to incorporate a mock server for simulating responses. This would be incredibly helpful to avoid handling the old API.

Add Coverage Data

We should track code coverage of the go-gpt3 client with a tool such as codecov.

Embeddings upgrade

Current embeddings API might use an improvement:

  • Use float32 instead of float64 (I highly doubt that OpenAI uses 64-bit floats in their LLM)
  • Add some basic operations between embeddings, like cosine similarity (which is equal to dot product due to embeddings being normalized to length 1)

Support multiple prompts in CompletionRequest

Hi 👋 Thanks for developing a great library!

Openai create-prompt documentation says the prompt field is supported encoded as a string, array of strings, array of tokens, or array of token arrays. but this library seems to be supported only encoded as a string.

openai-js implemented type for that like this: https://github.com/threepointone/openai-js/blob/eaade749f2ead531d2ac9a2015184f7b6418a581/api.ts#L475

So I want to ask the question, How can I send a completion request with an array of string?

Thanks

emptyMessagesLimit and Stream error

Hi,

Thanks for your excellent work.

Yesterday, doing calls to CreateCompletionStream() function I started getting the following error:
Stream error: stream has sent too many empty messages

Requests were like this:

{
  "model": "text-davinci-003",
  "prompt": "В чем смысл жизни?",
  "max_tokens": 512,
  "temperature": 0.7,
  "stream": true
}

Seems like it's related to
emptyMessagesLimit = 100 in stream.go.

My code:

	stream, err := c.CreateCompletionStream(context.Background(), params)
	if err != nil {
		return
	}
	defer stream.Close()

	for {
		response, err := stream.Recv()
		if errors.Is(err, io.EOF) {
			return
		}

		if err != nil {
			fmt.Printf("Stream error: %v\n", err)
			return
		}

		choices := response.Choices
		if len(choices) > 0 {
			fmt.Printf("%s", choices[0].Text)
		}
	}

I copied it from your example. Before yesterday it worked fine. Today this error seems to persist.

Could you please check it or make the variable configurable?

Thanks again.

stream mode,can 't detect answer is over

the code is bellow :

for {
		response, err := stream.Recv()
		if errors.Is(err, io.EOF) {
			fmt.Println("Stream finished")
			return
		}

		if err != nil {
			fmt.Printf("Stream error: %v\n", err)
			return
		}

		fmt.Printf("%v\n", err)
		fmt.Printf("%T\n", response.Choices[0].Text)
		//fmt.Printf("%s", response.Choices[0].Text)
	}

this is echo :

<nil>
string
<nil>
string
<nil>
string
<nil>
string
<nil>
string
<nil>
string
<nil>
string
<nil>
string
<nil>
string
<nil>
string
<nil>
string
<nil>
string
<nil>
string
<nil>
string
<nil>
panic: runtime error: index out of range [0] with length 0

goroutine 1 [running]:
main.main()
        /home/ly/Desktop/chatgpt/mydemo2/main.go:42 +0x545

then answer is over err is not equal io.EOF

		if errors.Is(err, io.EOF) {
			fmt.Println("Stream finished")
			return
		}

Support new chat API (POST /chat/completions)

OpenAI announced support for a new chat API like chatGPT. This has a similar request and response model to the completions endpoint but with slight variations.

POST: https://api.openai.com/v1/chat/completions

Request:

{
  "model": "gpt-3.5-turbo",
  "messages": [{"role": "user", "content": "Hello!"}]
}

Response:

{
  "id": "chatcmpl-123",
  "object": "chat.completion",
  "created": 1677652288,
  "choices": [{
    "index": 0,
    "message": {
      "role": "assistant",
      "content": "\n\nHello there, how may I assist you today?",
    },
    "finish_reason": "stop"
  }],
  "usage": {
    "prompt_tokens": 9,
    "completion_tokens": 12,
    "total_tokens": 21
  }
}

Further details can be found here: https://platform.openai.com/docs/guides/chat

The New Moderation Endpoint

They said:

In the future, we will deprecate content-filter-alpha in favor of the moderation endpoint. For now, we recommend that users begin transitioning to the new endpoint for testing.

Personally, I actively use the content-filter-alpha as this is required if your apps were already approved by OpenAI.
This is also required if one wants to pass the app review's Standard safety requirements.

Would love to see this being supported soon~

Here are some details about the moderation endpoint:

Does this library support streaming?

I can see that the CompletionRequest takes a Stream bool, but I don't see anything in the code that would indicate streaming support or functionality. I could very easily be missing something though, so wanted to check with you. Thanks.

gpt3dot5trurbo error

when i change model to gpt3dot5truo api return error msg like this :

error, status code: 404, message: This is a chat model and not supported in the v1/completions endpoint. Did you mean to use v1/chat/completions?

when the apikey is use out money it return EOF?

maybe then you use out money ,it should return error ,like
You exceeded your current quota, please check your plan and billing details.

this is a apikey for test : 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

`omitempty` option of request struct will generate incorrect request when parameter is 0.

The 'omitempty' option of the request structs should be removed. This is because it generates an incorrect request when a parameter is 0. For example, a request with the temperate field set to '0' will actually return a response as if the field had been set to one. This is because the go JSON parser does not differentiate between a 0 value and no value for float32, so Openai will receive a request without a temperate field which then defaults to a temperature value of 1.

Http Client Transport Support

For some reason, the API is banned in some countries.

After added the following codes, it works:

        config := gogpt.DefaultConfig("token")
	// 创建一个 HTTP Transport 对象,并设置代理服务器
	proxyUrl, err := url.Parse("http://localhost:{port}")
	if err != nil {
		panic(err)
	}
	transport := &http.Transport{
		Proxy: http.ProxyURL(proxyUrl),
	}
	// 创建一个 HTTP 客户端,并将 Transport 对象设置为其 Transport 字段
	config.HTTPClient = &http.Client{
		Transport: transport,
	}

	c := gogpt.NewClientWithConfig(config)

Add a Mocked Server for Testing

Based on a request from #27, we should introduce a mocked server which tests that values are correctly sent by go-gpt3 and received by the server, as well as the ability for the client to receive data from the server.

This can help us to quickly iterate on tests without spending any OpenAI credits.

We need the following to complete this task

  • Create a mocked OpenAI API server
  • Write endpoint handlers and tests for the mocked server:
    • Completions
    • Edits
    • Moderation
    • Search
    • Embeddings
    • Answers
    • Files
    • Classifications

the stream always return EOF

func test1(key, input string, callback func(message string)) {

config := gogpt.DefaultConfig(key)
config.EmptyMessagesLimit = 10000
c := gogpt.NewClientWithConfig(config)
ctx := context.Background()

req := gogpt.CompletionRequest{
	Model:     gogpt.GPT3TextDavinci003,
	MaxTokens: 5,
	Prompt:    input,
	Stream:    true,
}

stream, err := c.CreateCompletionStream(ctx, req)

if err != nil {
	return
}
defer stream.Close()
i := 0
for {
	i++
	response, err := stream.Recv()
	if errors.Is(err, io.EOF) {
		fmt.Println(err.Error())
		fmt.Println("Stream finished")
		return
	}
	if err != nil {
		fmt.Printf("Stream error: %v\n", err)
		return
	}
	var txt string
	if len(response.Choices) > 0 {
		txt = response.Choices[0].Text
	}
	callback(txt)
	//fmt.Printf("Stream response: %v\n", response.Choices[0])
}

}

the version is v1.2.0
thanks

Demo code not working

Please forgive me if I am asking an insanely stupid question. I got the go-gpt3 code, then copied verbatim the example usage, and when I try to run the example code I get no response.

I did not download anything else besides go-gpt3, therefore, here is the (potentially insanely stupid question): Do I need to download something else. e.g., the openai API in Python or in .js?

I don't like Python or JS, I would rather use pure Go if possible, but if there is no other choice and I have to get the Python or the JS version, which one would be the better choice?

Thanks you

Mark search API as deprecated

I am creating this issue to introduce myself as well. I am using go-gpt3 as the underlying library for my tool geppetto, and would like to provide an easy to use CLI tool for all openai APIs. As I was going through, I noticed that the search API was deprecated (and in fact, not even reachable from the doc page).

Should we mark it as deprecated in the library as well?

GPT3Dot5Turbo0301 model always return EOF

I have upgraded to the latest version but it always return EOF, and the previous version was normal

func test1(key, input string, callback func(message string)) {
	config := gogpt.DefaultConfig(key)
	config.EmptyMessagesLimit = 10000
	c := gogpt.NewClientWithConfig(config)
	ctx := context.Background()

	req := gogpt.CompletionRequest{
		Model:     gogpt.GPT3Dot5Turbo0301,
		MaxTokens: 100,
		Prompt:    input,
		Stream:    true,
	}
	stream, err := c.CreateCompletionStream(ctx, req)
	if err != nil {
		return
	}
	defer stream.Close()
	i := 0
	for {
		i++
		response, err := stream.Recv()
		if errors.Is(err, io.EOF) {
			fmt.Println(err.Error())
			fmt.Println("Stream finished")
			return
		}

		if err != nil {
			fmt.Printf("Stream error: %v\n", err)
			return
		}
		var txt string
		if len(response.Choices) > 0 {
			txt = response.Choices[0].Text
		}
		callback(txt)
		//fmt.Printf("Stream response: %v\n", response.Choices[0])
	}
}
key := "sk-Z5vCOAEQ3IINgZ0KpzDkT3BlbkFJ******7BQtM"
test1(key, "hello", func(message string) {
		fmt.Print(message)
	})

the chat stream api should check return error message.

https://github.com/sashabaranov/go-gpt3/blob/575c4e4adbf3e12dea780c735fa9c19062440e11/chat_stream.go#L40

In the recv method is that it does not check the response status code, and it returns an empty message instead of an error message when the status is not 200.

To fix this issue, the recv method should check the status code of the response and return an error message if the status code is not 200. The error message should be of type ErrorResponse with an APIError field containing the appropriate error information.

type APIError struct {
	Code       *string `json:"code,omitempty"`
	Message    string  `json:"message"`
	Param      *string `json:"param,omitempty"`
	Type       string  `json:"type"`
	StatusCode int     `json:"-"`
}
type ErrorResponse struct {
	Error *APIError `json:"error,omitempty"`
}

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.