Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
41 commits
Select commit Hold shift + click to select a range
3710b6c
Updates on Getting Started section on README (#16)
siawchen Dec 10, 2024
5903272
add more keywords, and retry another question (#18)
cheehook Dec 13, 2024
183650b
let initial inputs at least match one key for prompt. (#17)
cheehook Dec 13, 2024
744a735
moved hardcoded internal dns into configmap (#19)
wanhakim Dec 13, 2024
1539805
Update manifests and app-backend Dockerfile to resolve missing Gatewa…
wanhakim Dec 20, 2024
c4c6df4
add new basic workflow after solving the bug (#20)
cheehook Dec 20, 2024
f9a377d
add keycloak theme under assets (#23)
wanhakim Jan 3, 2025
1c03a60
fix format (#26)
NeoZhangJianyu Jan 17, 2025
367c8f3
keycloak integration, mysql enablement, megaservice refactor and impo…
wanhakim Jan 17, 2025
c66d85e
temp fix for retriever deployment (#29)
wanhakim Jan 17, 2025
3c79a2f
update readme for v1.2 (#31)
cheehook Jan 22, 2025
1d4457c
update studio fe table UI and updated studio be according to the data…
wanhakim Jan 24, 2025
3f38c72
update docker publish workflow (#33)
wanhakim Jan 24, 2025
e7f5114
remove HF_TOKEN in configmaps if not NA, updated tgi inputs params an…
wanhakim Feb 6, 2025
f1eb2a2
fixes for k8s deploy scripts (#35)
louie-tsai Feb 17, 2025
b63b6ba
fix embedding svc crashloopback during sandbox launch (#45)
wanhakim Feb 18, 2025
e3b2eab
tidying up setup genai studio scripts
wanhakim Feb 26, 2025
bc19b87
added commands script for registry
wanhakim Feb 26, 2025
811de1b
update esbuild version
wanhakim Feb 26, 2025
7f4121c
update setup genai studio scripts
wanhakim Mar 13, 2025
c46681f
[Feat] Add GenAI Studio UI improvement (#48)
haoruan Mar 14, 2025
52c5475
Add GitHub Action to check and close stale issues and PRs (#49)
XuehaoSun Mar 14, 2025
8a9ccce
initial push for v1.3
wanhakim Mar 27, 2025
73bf8fe
fixed manifest issues
wanhakim Mar 28, 2025
607bfd7
Rework canvas
cheehook Mar 17, 2025
1cb500b
remove utility tab
cheehook Mar 17, 2025
b8b3768
add tools scripts for agents
cheehook Mar 17, 2025
d592b06
fix output anchors overlapping
cheehook Mar 21, 2025
1c35bfb
Revert "fix output anchors overlapping"
cheehook Mar 21, 2025
fd0687b
fix output anchors overlapping
cheehook Mar 21, 2025
9d91eaa
update agent nodes
Mar 28, 2025
05bba9c
Modify app-backend for multiple megaservices and dynamic microservice…
chinyixiang Mar 28, 2025
cdc42ca
update tools files
Mar 28, 2025
1b60e1c
fix agent nodes
Mar 28, 2025
1ee5388
enable agent reasoning
cheehook Mar 28, 2025
bee082b
fix tool bug and collapsible inference settings
cheehook Apr 2, 2025
0f3e3e4
fix thinking is popping for non agent
cheehook Apr 2, 2025
99f3ba9
app-backend and templates changes to enable agentqna
chinyixiang Apr 3, 2025
46d7f7b
expose strategy in node configs
cheehook Apr 3, 2025
64a5b4e
Merge remote-tracking branch 'upstream/main'
Apr 4, 2025
c23cb5a
enable llmtrace for sandbox
Apr 4, 2025
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
9 changes: 8 additions & 1 deletion app-backend/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ RUN apt-get update -y && apt-get install -y --no-install-recommends --fix-missin
libsqlite3-0=3.40.1-2+deb12u1 \
libgl1-mesa-glx=22.3.6-1+deb12u1 \
libjemalloc-dev=5.3.0-1 \
git=1:2.39.5-0+deb12u1 && \
git && \
rm -rf /var/lib/apt/lists/*

RUN useradd -m -s /bin/bash user && \
Expand All @@ -20,9 +20,16 @@ RUN pip install --no-cache-dir --upgrade pip==24.3.1 setuptools==75.3.0 && \

COPY ./templates/microservices/* /home/user/templates/microservices/
COPY ./megaservice.py /home/user/megaservice.py
COPY ./orchestrator.py /home/user/GenAIComps/comps/cores/mega/orchestrator.py
COPY config/* /home/user/config/

ENV PYTHONPATH=/home/user/GenAIComps
ENV TELEMETRY_ENDPOINT="http://my-otel-collector-opentelemetry-collector.opentelemetry.svc.cluster.local:4318/v1/traces"
# ENV embedding_tei_langchain_0_port=9007 \
# llm_tgi_0_port=9008 \
# prepare_doc_redis_prep_0_port=9009 \
# reranking_tei_0_port=9010 \
# retriever_redis_0_port=9011

USER user

Expand Down
205 changes: 0 additions & 205 deletions app-backend/config/project-info.json

This file was deleted.

Loading
Loading