-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathconfig.yml
More file actions
14 lines (14 loc) · 723 Bytes
/
Copy pathconfig.yml
File metadata and controls
14 lines (14 loc) · 723 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
openai:
key: "" # Your OpenAI API key
embedding_model: "text-embedding-ada-002"
chat_model: "gpt-3.5-turbo"
data:
src: "data/my-file-with-text-entries.csv"
dist: "data/my-file-with-text-entries-and-embeddings.csv"
text_column: "Text" # Name of the column where to read Text
embedding_column: "Embedding" # Name of the column where to read/write Embeddings
prompt:
system: "Context prompt with custom instructions to provide better results"
user: 'Instruction prompt to indicate the model we want to get answers from the results presented bellow.'
present_result: "Presents a single result inside the prompt:"
budget: 4096 # How big do we want to generate prompts, the bigger the more precise results.