-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
# Changelog ## [0.0.2a10](https://github.com/NeonGeckoCom/neon-llm-gemini/tree/0.0.2a10) (2025-03-03) [Full Changelog](0.0.2a9...0.0.2a10) **Merged pull requests:** - Update to stable dependencies [\#7](#7) ([NeonDaniel](https://github.com/NeonDaniel)) ## [0.0.2a9](https://github.com/NeonGeckoCom/neon-llm-gemini/tree/0.0.2a9) (2025-01-17) [Full Changelog](0.0.2a8...0.0.2a9) **Merged pull requests:** - Update Docker configuration and async consumer init [\#6](#6) ([NeonDaniel](https://github.com/NeonDaniel)) ## [0.0.2a8](https://github.com/NeonGeckoCom/neon-llm-gemini/tree/0.0.2a8) (2025-01-17) [Full Changelog](0.0.2a7...0.0.2a8) **Merged pull requests:** - Add Docker container update automation [\#5](#5) ([NeonDaniel](https://github.com/NeonDaniel)) ## [0.0.2a7](https://github.com/NeonGeckoCom/neon-llm-gemini/tree/0.0.2a7) (2024-04-04) [Full Changelog](0.0.2a6...0.0.2a7) **Merged pull requests:** - neon-llm-core version bump [\#4](#4) ([NeonBohdan](https://github.com/NeonBohdan)) ## [0.0.2a6](https://github.com/NeonGeckoCom/neon-llm-gemini/tree/0.0.2a6) (2024-03-25) [Full Changelog](0.0.2a5...0.0.2a6) **Merged pull requests:** - neon-llm-core version bump [\#3](#3) ([NeonBohdan](https://github.com/NeonBohdan)) ## [0.0.2a5](https://github.com/NeonGeckoCom/neon-llm-gemini/tree/0.0.2a5) (2024-01-17) [Full Changelog](0.0.2a3...0.0.2a5) **Merged pull requests:** - Use Gemini [\#1](#1) ([NeonBohdan](https://github.com/NeonBohdan)) ## [0.0.2a3](https://github.com/NeonGeckoCom/neon-llm-gemini/tree/0.0.2a3) (2023-11-16) [Full Changelog](0.0.2a2...0.0.2a3) ## [0.0.2a2](https://github.com/NeonGeckoCom/neon-llm-gemini/tree/0.0.2a2) (2023-10-23) [Full Changelog](0.0.2a1...0.0.2a2) ## [0.0.2a1](https://github.com/NeonGeckoCom/neon-llm-gemini/tree/0.0.2a1) (2023-10-19) [Full Changelog](0.0.1...0.0.2a1) ## [0.0.1](https://github.com/NeonGeckoCom/neon-llm-gemini/tree/0.0.1) (2023-06-30) [Full Changelog](0.0.1a4...0.0.1) ## [0.0.1a4](https://github.com/NeonGeckoCom/neon-llm-gemini/tree/0.0.1a4) (2023-06-30) [Full Changelog](0.0.1a3...0.0.1a4) ## [0.0.1a3](https://github.com/NeonGeckoCom/neon-llm-gemini/tree/0.0.1a3) (2023-06-06) [Full Changelog](0.0.1a2...0.0.1a3) ## [0.0.1a2](https://github.com/NeonGeckoCom/neon-llm-gemini/tree/0.0.1a2) (2023-05-16) [Full Changelog](babd77e...0.0.1a2) \* *This Changelog was automatically generated by [github_changelog_generator](https://github.com/github-changelog-generator/github-changelog-generator)*
- Loading branch information
Showing
18 changed files
with
359 additions
and
262 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
name: Publish Updated Docker Image | ||
on: | ||
workflow_dispatch: | ||
|
||
jobs: | ||
|
||
build_and_publish_docker: | ||
uses: neongeckocom/.github/.github/workflows/publish_docker.yml@master | ||
secrets: inherit | ||
with: | ||
include_semver: False |
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 |
---|---|---|
@@ -1,15 +1,18 @@ | ||
FROM python:3.9-slim | ||
|
||
LABEL vendor=neon.ai \ | ||
ai.neon.name="neon-llm-chatgpt" | ||
ai.neon.name="neon-llm-gemini" | ||
|
||
ENV OVOS_CONFIG_BASE_FOLDER=neon | ||
ENV OVOS_CONFIG_FILENAME=diana.yaml | ||
ENV OVOS_DEFAULT_CONFIG=/opt/neon/diana.yaml | ||
ENV XDG_CONFIG_HOME=/config | ||
ENV CHATBOT_VERSION=v2 | ||
|
||
ENV OVOS_CONFIG_BASE_FOLDER neon | ||
ENV OVOS_CONFIG_FILENAME diana.yaml | ||
ENV XDG_CONFIG_HOME /config | ||
COPY docker_overlay/ / | ||
|
||
WORKDIR /app | ||
COPY . /app | ||
RUN pip install /app | ||
|
||
CMD [ "neon-llm-chatgpt" ] | ||
CMD [ "neon-llm-gemini" ] |
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 was deleted.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
log_level: INFO | ||
logs: | ||
level_overrides: | ||
error: | ||
- pika | ||
warning: | ||
- filelock | ||
- watchdog | ||
- httpcore | ||
info: | ||
- openai | ||
- asyncio | ||
- matplotlib | ||
debug: [] | ||
MQ: | ||
server: neon-rabbitmq | ||
port: 5672 | ||
users: | ||
mq_handler: | ||
user: neon_api_utils | ||
password: Klatchat2021 | ||
LLM_GEMINI: | ||
model: "gemini-pro" | ||
role: "You are trying to give a short answer in less than 40 words." | ||
context_depth: 3 | ||
max_tokens: 100 | ||
num_parallel_processes: 2 | ||
llm_bots: | ||
gemini: | ||
- description: You are trying to give a short answer in less than 40 words. | ||
name: assistant |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.