Spaces:
Runtime error
Runtime error
Jerome
commited on
Commit
•
fe463ec
1
Parent(s):
e1118d8
Prettier format rendering
Browse files
README.md
CHANGED
@@ -32,18 +32,17 @@ Generate a configuration JSON. The structure is as follows:
|
|
32 |
|
33 |
```json
|
34 |
{
|
35 |
-
"gradio": {
|
36 |
-
# key-value pairs passed to Gradio.Blocks.launch
|
37 |
},
|
38 |
"openai": {
|
39 |
-
"api_key":
|
40 |
-
"model":
|
41 |
"assistant_name": str # Naming convention to give assistants
|
42 |
},
|
43 |
"chat": {
|
44 |
-
"prefix":
|
45 |
-
"system_prompt":
|
46 |
-
"retries":
|
47 |
}
|
48 |
}
|
49 |
```
|
|
|
32 |
|
33 |
```json
|
34 |
{
|
35 |
+
"gradio": { dict # key-value pairs passed to Gradio.Blocks.launch
|
|
|
36 |
},
|
37 |
"openai": {
|
38 |
+
"api_key": str # your OpenAI API key
|
39 |
+
"model": str # OpenAI model to use
|
40 |
"assistant_name": str # Naming convention to give assistants
|
41 |
},
|
42 |
"chat": {
|
43 |
+
"prefix": str # Vector store name prefix
|
44 |
+
"system_prompt": str # Path to system prompt (static/system-prompt.txt)
|
45 |
+
"retries": int # Number of prompt retry attempts
|
46 |
}
|
47 |
}
|
48 |
```
|