Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Release mongodb-rag-core-v0.1.0 #254

Merged
merged 9 commits into from
Nov 30, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
27 changes: 11 additions & 16 deletions .drone.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@ trigger:
- scripts/**/*
- ingest-mongodb-public/**/*
- chatbot-server-mongodb-public/**/*
- package-lock.json

steps:
- name: test
Expand Down Expand Up @@ -496,13 +497,11 @@ steps:
- npm run build -- --scope mongodb-rag-core
- cd chat-core && npm publish
environment:
LG_ARTIFACTORY_PASSWORD:
from_secret: lg_artifactory_password
LG_ARTIFACTORY_USERNAME:
from_secret: lg_artifactory_username
LG_ARTIFACTORY_TOKEN:
from_secret: lg_artifactory_token
LG_ARTIFACTORY_EMAIL:
from_secret: lg_artifactory_email
NPM_TOKEN:
MONGODB_EAI_NPM_TOKEN:
from_secret: mongodb_ai_npm_token

# ---
Expand Down Expand Up @@ -530,13 +529,11 @@ steps:
- npm run build -- --scope='{mongodb-rag-core,mongodb-rag-ingest}'
- cd ingest && npm publish
environment:
LG_ARTIFACTORY_PASSWORD:
from_secret: lg_artifactory_password
LG_ARTIFACTORY_USERNAME:
from_secret: lg_artifactory_username
LG_ARTIFACTORY_TOKEN:
from_secret: lg_artifactory_token
LG_ARTIFACTORY_EMAIL:
from_secret: lg_artifactory_email
NPM_TOKEN:
MONGODB_EAI_NPM_TOKEN:
from_secret: mongodb_ai_npm_token
# ---
# mongodb-chatbot-server package
Expand All @@ -563,13 +560,11 @@ steps:
- npm run build -- --scope='{mongodb-rag-core,mongodb-chatbot-server}'
- cd chat-server && npm publish
environment:
LG_ARTIFACTORY_PASSWORD:
from_secret: lg_artifactory_password
LG_ARTIFACTORY_USERNAME:
from_secret: lg_artifactory_username
LG_ARTIFACTORY_TOKEN:
from_secret: lg_artifactory_token
LG_ARTIFACTORY_EMAIL:
from_secret: lg_artifactory_email
NPM_TOKEN:
MONGODB_EAI_NPM_TOKEN:
from_secret: mongodb_ai_npm_token

# ---
Expand Down Expand Up @@ -600,7 +595,7 @@ steps:
from_secret: lg_artifactory_token
LG_ARTIFACTORY_EMAIL:
from_secret: lg_artifactory_email
NPM_TOKEN:
MONGODB_EAI_NPM_TOKEN:
from_secret: mongodb_ai_npm_token
# ---
# Scripts service
Expand Down
2 changes: 1 addition & 1 deletion chat-core/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "mongodb-rag-core",
"version": "0.0.5",
"version": "0.1.1-0",
"description": "Common elements used by the chatbot components.",
"author": "MongoDB, Inc.",
"license": "Apache-2.0",
Expand Down
2 changes: 1 addition & 1 deletion chat-server/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@
"langchain": "^0.0.148",
"lodash.clonedeep": "^4.5.0",
"mongodb": "^5.7.0",
"mongodb-rag-core": "^0.0.5",
"mongodb-rag-core": "^0.1.0",
"openai": "^3.2.1",
"pm2": "^5.3.0",
"rate-limit-mongo": "^2.3.2",
Expand Down
2 changes: 1 addition & 1 deletion ingest-mongodb-public/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@
"dependencies": {
"@release-it/bumper": "^5.1.0",
"dotenv": "^16",
"mongodb-rag-core": "^0.0.5",
"mongodb-rag-core": "^0.1.0",
"mongodb-rag-ingest": "^0.1.5"
}
}
2 changes: 1 addition & 1 deletion ingest/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@
"jsdom": "^22.1.0",
"langchain": "^0.0.148",
"mongodb": "^5",
"mongodb-rag-core": "^0.0.5",
"mongodb-rag-core": "^0.1.0",
"node-fetch": "^2",
"rimraf": "^5.0.1",
"simple-git": "^3.19.1",
Expand Down
Loading