From c05320ec0e60ef0c0219c7ca7c3ca1bee83d294f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Kaan=20=C3=87ayl=C4=B1?= <38523756+kaancayli@users.noreply.github.com> Date: Sat, 21 Sep 2024 15:17:06 +0200 Subject: [PATCH] chore: Add example configuration files --- application.example.yml | 7 +++ application.test.yml | 5 -- llm_config.example.yml | 124 ++++++++++++++++++++++++++++++++++++++++ 3 files changed, 131 insertions(+), 5 deletions(-) create mode 100644 application.example.yml delete mode 100644 application.test.yml create mode 100644 llm_config.example.yml diff --git a/application.example.yml b/application.example.yml new file mode 100644 index 00000000..9e1490ba --- /dev/null +++ b/application.example.yml @@ -0,0 +1,7 @@ +api_keys: + - token: "secret" + +weaviate: + host: "localhost" + port: "8001" + grpc_port: "50051" \ No newline at end of file diff --git a/application.test.yml b/application.test.yml deleted file mode 100644 index fdcd1f4e..00000000 --- a/application.test.yml +++ /dev/null @@ -1,5 +0,0 @@ -api_keys: - - token: "secret" - -env_vars: - test: "test" \ No newline at end of file diff --git a/llm_config.example.yml b/llm_config.example.yml new file mode 100644 index 00000000..c7c66714 --- /dev/null +++ b/llm_config.example.yml @@ -0,0 +1,124 @@ +- api_key: + api_version: 2024-05-01-preview + azure_deployment: gpt-35-turbo + capabilities: + context_length: 16385 + gpt_version_equivalent: 3.5 + image_recognition: false + input_cost: 0.5 + json_mode: true + output_cost: 1.5 + privacy_compliance: true + self_hosted: false + vendor: OpenAI + description: GPT 3.5 16k on Azure + endpoint: '' + id: azure-gpt-35-turbo + model: gpt-3.5-turbo + name: GPT 3.5 Turbo + type: azure_chat +- api_key: + capabilities: + input_cost: 0.5 + output_cost: 1.5 + gpt_version_equivalent: 3.5 + context_length: 16385 + vendor: "OpenAI" + privacy_compliance: false + self_hosted: false + image_recognition: false + son_mode: true + description: GPT 3.5 16k + id: oai-gpt-35-turbo + model: gpt-3.5-turbo + name: GPT 3.5 Turbo + type: openai_chat +- api_key: + api_version: 2024-02-15-preview + azure_deployment: gpt-4-turbo + capabilities: + context_length: 128000 + gpt_version_equivalent: 4 + image_recognition: false + input_cost: 10 + json_mode: true + output_cost: 30 + privacy_compliance: true + self_hosted: false + vendor: OpenAI + description: GPT 4 Turbo 128k on Azure + endpoint: '' + id: azure-gpt-4-turbo + model: gpt-4-turbo + name: GPT 4 Turbo + type: azure_chat +- api_key: + api_version: 2024-02-15-preview + azure_deployment: gpt-4o + capabilities: + context_length: 128000 + gpt_version_equivalent: 4.5 + image_recognition: true + input_cost: 5 + json_mode: true + output_cost: 15 + privacy_compliance: true + self_hosted: false + vendor: OpenAI + description: GPT 4 Omni on Azure + endpoint: '' + id: azure-gpt-4-omni + model: gpt-4o + name: GPT 4 Omni + type: azure_chat +- api_key: + api_version: 2023-03-15-preview + azure_deployment: gpt-4o-mini + capabilities: + context_length: 128000 + gpt_version_equivalent: 4.25 + image_recognition: true + input_cost: 0.15 + json_mode: true + output_cost: 0.075 + privacy_compliance: true + self_hosted: false + vendor: OpenAI + description: GPT 4 Omni Mini on Azure + endpoint: '' + id: azure-gpt-4-omni-mini + model: gpt-4o-mini + name: GPT 4 Omni Mini + type: azure_chat +- api_key: + api_version: '2023-05-15T00:00:00.000Z' + azure_deployment: te-3-large + capabilities: + context_length: 8191 + input_cost: 0.13 + output_cost: 0.065 + privacy_compliance: true + self_hosted: false + vendor: OpenAI + description: Embedding Large 8k Azure + endpoint: '' + id: embedding-large + model: text-embedding-3-large + name: Embedding Large + type: azure_embedding +- api_key: + api_version: 2024-02-15-preview + azure_deployment: te-3-small + capabilities: + context_length: 8191 + input_cost: 0.02 + output_cost: 0 + privacy_compliance: true + self_hosted: false + vendor: OpenAI + description: Embedding Small 8k Azure + endpoint: '' + id: embedding-small + model: text-embedding-3-small + name: Embedding Small + type: azure_embedding \ No newline at end of file