mirror of
https://github.com/sigoden/aichat
synced 2024-11-16 06:15:26 +00:00
chore: add demo config.yaml
This commit is contained in:
parent
d2e06bf716
commit
54cfac427d
@ -69,8 +69,6 @@ clients: # Setup AIs
|
||||
- type: openai # OpenAI configuration
|
||||
api_key: sk-xxx # OpenAI api key, alternative to OPENAI_API_KEY
|
||||
organization_id: org-xxx # Organization ID. Optional
|
||||
proxy: socks5://127.0.0.1:1080 # Set proxy server. Optional
|
||||
connect_timeout: 10 # Set a timeout in seconds for connect to gpt. Optional
|
||||
|
||||
# See https://github.com/go-skynet/LocalAI
|
||||
- type: localai # LocalAI configuration
|
||||
@ -79,8 +77,6 @@ clients: # Setup AIs
|
||||
models: # Support models
|
||||
- name: gpt4all-j
|
||||
max_tokens: 4096
|
||||
proxy: socks5://127.0.0.1:1080 # Set proxy server. Optional
|
||||
connect_timeout: 10 # Set a timeout in seconds for connect to gpt. Optional
|
||||
```
|
||||
|
||||
> You can use `.info` to view the current configuration file path and roles file path.
|
||||
|
27
config.yaml
Normal file
27
config.yaml
Normal file
@ -0,0 +1,27 @@
|
||||
model: openai:gpt-3.5-turbo # Choose a model
|
||||
temperature: 1.0 # See https://platform.openai.com/docs/api-reference/chat/create#chat/create-temperature
|
||||
save: true # If set true, aichat will save non-session chat messages to messages.md
|
||||
highlight: true # Set false to turn highlight
|
||||
light_theme: false # If set true, use light theme
|
||||
wrap: no # Specify the text-wrapping mode (no*, auto, <max-width>)
|
||||
wrap_code: false # Whether wrap code block
|
||||
auto_copy: false # Automatically copy the last output to the clipboard
|
||||
keybindings: emacs # REPL keybindings, possible values: emacs (default), vi
|
||||
|
||||
clients: # Setup AIs
|
||||
# See https://platform.openai.com/docs/quickstart
|
||||
- type: openai # OpenAI configuration
|
||||
api_key: sk-xxx # OpenAI api key, alternative to OPENAI_API_KEY
|
||||
organization_id: org-xxx # Organization ID. Optional
|
||||
proxy: socks5://127.0.0.1:1080
|
||||
connect_timeout: 10
|
||||
|
||||
# See https://github.com/go-skynet/LocalAI
|
||||
- type: localai # LocalAI configuration
|
||||
url: http://localhost:8080/v1/chat/completions # LocalAI api server
|
||||
api_key: xxx # Api key. alternative to LOCALAI_API_KEY
|
||||
models: # Support models
|
||||
- name: gpt4all-j
|
||||
max_tokens: 4096
|
||||
proxy: socks5://127.0.0.1:1080
|
||||
connect_timeout: 10
|
Loading…
Reference in New Issue
Block a user