Skip to content

Commit 5feec90

Browse files
committed
Merge remote-tracking branch 'origin/main'
2 parents 2d9b8ac + 839ee4d commit 5feec90

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

.github/workflows/update-vector-map.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -26,14 +26,14 @@ jobs:
2626
mode: 'diff'
2727
OPENAI_API_KEY: ${{ secrets.OPENAI_API_KEY }}
2828
db_type: 'chromadb'
29-
chroma_host: '181.41.213.86'
30-
chroma_port: '1811'
29+
chroma_host: ${{ secrets.CHROMADB_HOST }}
30+
chroma_port: ${{ secrets.CHROMADB_PORT }}
3131
chroma_collection: 'openai-update-vector-map'
3232

3333
# Налаштування авторизації
3434
chroma_auth_enabled: 'true'
3535
chroma_auth_type: 'token' # або 'token', 'api_key'
36-
chroma_auth_credentials: 'JlYpcJQhbtT1sEqcVCUoy9je09gGRAr1'
36+
chroma_auth_credentials: ${{ secrets.CHROMADB_TOKEN }}
3737
chroma_ssl_enabled: 'false'
3838

3939
file_extensions: '.js,.ts,.jsx,.tsx,.html,.css,.md,.txt'

localRun.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -65,9 +65,9 @@ async function localRun() {
6565

6666
console.log(`Vector code map generation completed in mode: ${mode}`);
6767
} catch (error) {
68-
console.error(`Помилка: ${error.message}`);
68+
console.error(`Помилка: ${error.message}`);
6969
process.exit(1);
7070
}
7171
}
7272

73-
localRun();
73+
localRun();

0 commit comments

Comments
 (0)