Skip to content

Commit 405c0a7

Browse files
Copilotphrocker
andcommitted
Rename llm-proxy module to integration-proxy with complete references update
Co-authored-by: phrocker <[email protected]>
1 parent 77ddfc9 commit 405c0a7

36 files changed

+34
-34
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ sub-projects:
99
core – Handles the core functionalities (e.g., SSH session management, zero trust policy enforcement).
1010
api – Provides a RESTful API layer to interface with the core module.
1111
dataplane – Offers dataplane functionality for secure data transfer and processing.
12-
llm-proxy – A proxy service that integrates with large language models (LLMs) to enhance security and compliance in SSH sessions.
12+
integration-proxy – A proxy service that integrates with large language models (LLMs) to enhance security and compliance in SSH sessions.
1313
llm-dataplane – A data processing layer that leverages LLMs for advanced analysis and decision-making in SSH sessions.
1414
ops-scripts – Contains operational scripts for deployment and management tasks.
1515
ai-agent – Java-based intelligent agent framework for monitoring and controlling SSH sessions.

build-images.sh

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@ update_sentrius_ssh=false
7474
update_sentrius_keycloak=false
7575
update_sentrius_agent=false
7676
update_sentrius_ai_agent=false
77-
update_llmproxy=false
77+
update_integrationproxy=false
7878
update_launcher=false
7979

8080
while [[ "$#" -gt 0 ]]; do
@@ -85,8 +85,8 @@ while [[ "$#" -gt 0 ]]; do
8585
--sentrius-agent) update_sentrius_agent=true ;;
8686
--sentrius-ai-agent) update_sentrius_ai_agent=true ;;
8787
--sentrius-launcher-service) update_launcher=true ;;
88-
--sentrius-llmproxy) update_llmproxy=true ;;
89-
--all) update_sentrius=true; update_sentrius_ssh=true; update_sentrius_keycloak=true; update_sentrius_agent=true; update_sentrius_ai_agent=true; update_llmproxy=true; update_launcher=true ;;
88+
--sentrius-integration-proxy) update_integrationproxy=true ;;
89+
--all) update_sentrius=true; update_sentrius_ssh=true; update_sentrius_keycloak=true; update_sentrius_agent=true; update_sentrius_ai_agent=true; update_integrationproxy=true; update_launcher=true ;;
9090
--no-cache) NO_CACHE=true ;;
9191
*) echo "Unknown flag: $1"; exit 1 ;;
9292
esac
@@ -138,11 +138,11 @@ if $update_sentrius_ai_agent; then
138138
rm docker/sentrius-launchable-agent/agent.jar
139139
fi
140140

141-
if $update_llmproxy; then
142-
cp llm-proxy/target/sentrius-llm-proxy-*.jar docker/llmproxy/llmproxy.jar
141+
if $update_integrationproxy; then
142+
cp integration-proxy/target/sentrius-integration-proxy-*.jar docker/integrationproxy/llmproxy.jar
143143
LLMPROXY_VERSION=$(increment_patch_version $LLMPROXY_VERSION)
144-
build_image "sentrius-llmproxy" "$LLMPROXY_VERSION" "./docker/llmproxy"
145-
rm docker/llmproxy/llmproxy.jar
144+
build_image "sentrius-integration-proxy" "$LLMPROXY_VERSION" "./docker/integrationproxy"
145+
rm docker/integrationproxy/llmproxy.jar
146146
update_env_var "LLMPROXY_VERSION" "$LLMPROXY_VERSION"
147147
fi
148148

deprecated-build-images-local.sh

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ update_sentrius_ssh=false
5959
update_sentrius_keycloak=false
6060
update_sentrius_agent=false
6161
update_sentrius_ai_agent=false
62-
update_llmproxy=false
62+
update_integrationproxy=false
6363
no_cache=false # Default: use cache
6464

6565

@@ -70,8 +70,8 @@ while [[ "$#" -gt 0 ]]; do
7070
--sentrius-keycloak) update_sentrius_keycloak=true ;;
7171
--sentrius-agent) update_sentrius_agent=true ;;
7272
--sentrius-ai-agent) update_sentrius_ai_agent=true ;;
73-
--sentrius-llmproxy) update_llmproxy=true ;;
74-
--all) update_sentrius=true; update_sentrius_ssh=true; update_sentrius_keycloak=true; update_sentrius_agent=true; update_sentrius_ai_agent=true; update_llmproxy=true ;;
73+
--sentrius-integration-proxy) update_integrationproxy=true ;;
74+
--all) update_sentrius=true; update_sentrius_ssh=true; update_sentrius_keycloak=true; update_sentrius_agent=true; update_sentrius_ai_agent=true; update_integrationproxy=true ;;
7575
--no-cache) no_cache=true ;; # Set no_cache to true if the flag is passed
7676
*) echo "Unknown flag: $1"; exit 1 ;;
7777
esac
@@ -140,14 +140,14 @@ if $update_sentrius_ai_agent; then
140140
#minikube image load sentrius-ai-agent:latest
141141
fi
142142

143-
if $update_llmproxy; then
144-
cp llm-proxy/target/sentrius-llm-proxy-*.jar docker/llmproxy/llmproxy.jar
143+
if $update_integrationproxy; then
144+
cp integration-proxy/target/sentrius-integration-proxy-*.jar docker/integrationproxy/llmproxy.jar
145145
LLMPROXY_VERSION=$(increment_patch_version $LLMPROXY_VERSION)
146-
build_image "sentrius-llmproxy" "$LLMPROXY_VERSION" "./docker/llmproxy"
147-
rm docker/llmproxy/llmproxy.jar
146+
build_image "sentrius-integration-proxy" "$LLMPROXY_VERSION" "./docker/integrationproxy"
147+
rm docker/integrationproxy/llmproxy.jar
148148
update_env_var "LLMPROXY_VERSION" "$LLMPROXY_VERSION"
149149
## for local, replace minikube with docker
150-
docker tag sentrius-llmproxy:$LLMPROXY_VERSION sentrius-llmproxy:latest
150+
docker tag sentrius-integration-proxy:$LLMPROXY_VERSION sentrius-integration-proxy:latest
151151
echo "Loading image into minikube"
152152
#minikube image load sentrius-ai-agent:LLMPROXY_VERSION
153153
#minikube image load sentrius-ai-agent:latest
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ The JIRA Proxy Controller provides a secure interface to interact with JIRA inst
44

55
## Overview
66

7-
The JIRA proxy is implemented in the `llm-proxy` module and provides authenticated access to JIRA functionality for agents and compliance tools. It follows the same security patterns as the existing OpenAI proxy.
7+
The JIRA proxy is implemented in the `integration-proxy` module and provides authenticated access to JIRA functionality for agents and compliance tools. It follows the same security patterns as the existing OpenAI proxy.
88

99
## Authentication
1010

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
<version>1.0.0-SNAPSHOT</version>
99
</parent>
1010

11-
<artifactId>sentrius-llm-proxy</artifactId>
11+
<artifactId>sentrius-integration-proxy</artifactId>
1212

1313

1414
<properties>

llm-proxy/src/main/java/io/sentrius/sso/LLMProxyApplication.java renamed to integration-proxy/src/main/java/io/sentrius/sso/LLMProxyApplication.java

File renamed without changes.

0 commit comments

Comments
 (0)