Skip to content

Commit 2f80b66

Browse files
authored
Merge pull request #1094 from nickprock/feat/issue_1081
added api key to openai compatible
2 parents 4c2e326 + 12aded0 commit 2f80b66

File tree

3 files changed

+5
-1
lines changed

3 files changed

+5
-1
lines changed

README.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -149,6 +149,9 @@ class PizzaForm(CatForm):
149149

150150
## Roadmap & Contributing
151151

152+
*Attention*: while version 2 is being worked out, we'll only accept bug fixes for v1. Send your PR for v1 on branch `develop`.
153+
Do not expect to see merged PRs not previously discussed and agreed upon in an issue.
154+
152155
Detailed roadmap is [here](./ROADMAP.md).
153156
Send your pull request to the `develop` branch. Here is a [full guide to contributing](./CONTRIBUTING.md).
154157

core/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ RUN apt-get -y update && apt-get install -y curl build-essential fastjar libmagi
1111

1212
### ADMIN (static build) ###
1313
WORKDIR /admin
14-
RUN curl -sL https://github.com/cheshire-cat-ai/admin-vue/releases/download/Admin/develop.zip | jar -xv
14+
RUN curl -sL https://github.com/cheshire-cat-ai/admin-vue/releases/download/Admin/release.zip | jar -xv
1515

1616
### PREPARE BUILD WITH NECESSARY FILES AND FOLDERS ###
1717
COPY ./pyproject.toml /app/pyproject.toml

core/cat/factory/embedder.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -56,6 +56,7 @@ class EmbedderDumbConfig(EmbedderSettings):
5656

5757

5858
class EmbedderOpenAICompatibleConfig(EmbedderSettings):
59+
oai_comp_api_key: str = None
5960
url: str
6061
_pyclass: Type = CustomOpenAIEmbeddings
6162

0 commit comments

Comments
 (0)