This repository has been archived by the owner on Apr 18, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Feat: Add support for Mistral AI and Azure OpenAI monitoring (#14)
* Mistral monitoring * update testing * update docker setup * use local doku * update test * print doku token * update Git action * add MISTRAL_API_TOKEN: ${{ secrets.MISTRAL_API_TOKEN }} * update testing * remove console.log * remove console.log * update mistral test * add timeout * add azure openai * add azure_ prefix * udpate testing * update test files * fix completions streaming * add total tokens to cohere client embed * update testing * update client * update anthropic test * hold anthropic and mistralai tests * update version
- Loading branch information
Showing
17 changed files
with
958 additions
and
62 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,52 @@ | ||
version: '3.8' | ||
|
||
services: | ||
clickhouse: | ||
image: clickhouse/clickhouse-server:24.1.5 | ||
container_name: clickhouse | ||
environment: | ||
CLICKHOUSE_PASSWORD: ${DOKU_DB_PASSWORD:-DOKU} | ||
CLICKHOUSE_USER: ${DOKU_DB_USER:-default} | ||
volumes: | ||
- clickhouse-data:/var/lib/clickhouse | ||
ports: | ||
- "9000:9000" | ||
- "8123:8123" | ||
restart: always | ||
|
||
doku-ingester: | ||
image: ghcr.io/dokulabs/doku-ingester:latest | ||
container_name: doku-ingester | ||
environment: | ||
DOKU_DB_HOST: clickhouse | ||
DOKU_DB_PORT: 9000 | ||
DOKU_DB_NAME: ${DOKU_DB_NAME:-default} | ||
DOKU_DB_USER: ${DOKU_DB_USER:-default} | ||
DOKU_DB_PASSWORD: ${DOKU_DB_PASSWORD:-DOKU} | ||
ports: | ||
- "9044:9044" | ||
depends_on: | ||
- clickhouse | ||
restart: always | ||
|
||
doku-client: | ||
image: ghcr.io/dokulabs/doku-client:latest | ||
container_name: doku-client | ||
environment: | ||
INIT_DB_HOST: clickhouse | ||
INIT_DB_PORT: 8123 | ||
INIT_DB_DATABASE: ${DOKU_DB_NAME:-default} | ||
INIT_DB_USERNAME: ${DOKU_DB_USER:-default} | ||
INIT_DB_PASSWORD: ${DOKU_DB_PASSWORD:-DOKU} | ||
SQLITE_DATABASE_URL: file:/app/client/data/data.db | ||
ports: | ||
- "3000:3000" | ||
depends_on: | ||
- clickhouse | ||
volumes: | ||
- doku-client-data:/app/client/data | ||
restart: always | ||
|
||
volumes: | ||
clickhouse-data: | ||
doku-client-data: |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.