mirror of
https://github.com/openai/openai-cookbook
synced 2024-11-04 06:00:33 +00:00
8 lines
224 B
Python
8 lines
224 B
Python
|
COMPLETIONS_MODEL = "text-davinci-003"
|
||
|
EMBEDDINGS_MODEL = "text-embedding-ada-002"
|
||
|
CHAT_MODEL = 'gpt-3.5-turbo'
|
||
|
TEXT_EMBEDDING_CHUNK_SIZE=300
|
||
|
VECTOR_FIELD_NAME='content_vector'
|
||
|
PREFIX = "sportsdoc"
|
||
|
INDEX_NAME = "f1-index"
|