Skip to content
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
3 changes: 3 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -149,6 +149,9 @@ class PizzaForm(CatForm):

## Roadmap & Contributing

*Attention*: while version 2 is being worked out, we'll only accept bug fixes for v1. Send your PR for v1 on branch `develop`.
Do not expect to see merged PRs not previously discussed and agreed upon in an issue.

Detailed roadmap is [here](./ROADMAP.md).
Send your pull request to the `develop` branch. Here is a [full guide to contributing](./CONTRIBUTING.md).

Expand Down
2 changes: 1 addition & 1 deletion core/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ RUN apt-get -y update && apt-get install -y curl build-essential fastjar libmagi

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

### PREPARE BUILD WITH NECESSARY FILES AND FOLDERS ###
COPY ./pyproject.toml /app/pyproject.toml
Expand Down
1 change: 1 addition & 0 deletions core/cat/factory/embedder.py
Original file line number Diff line number Diff line change
Expand Up @@ -56,6 +56,7 @@ class EmbedderDumbConfig(EmbedderSettings):


class EmbedderOpenAICompatibleConfig(EmbedderSettings):
oai_comp_api_key: str = None
url: str
_pyclass: Type = CustomOpenAIEmbeddings

Expand Down