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
8 changes: 4 additions & 4 deletions docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

services:
autopatch-llm-dispatch-service:
image: ghcr.io/sysec-uic/autopatch-llm/llm-dispatch-service:0.9.0
image: ghcr.io/sysec-uic/autopatch-llm/llm-dispatch-service:0.9.1
networks:
- autopatch-llm_autopatch-docker-network
build: ./src/llm-dispatch-service
Expand All @@ -19,7 +19,7 @@ services:
- ./assets/input_codebase:/app/input_codebase:ro
working_dir: /app
autopatch-code-property-graph-generator:
image: ghcr.io/sysec-uic/autopatch-llm/code-property-graph-generator:0.9.0
image: ghcr.io/sysec-uic/autopatch-llm/code-property-graph-generator:0.9.1
networks:
- autopatch-llm_autopatch-docker-network
build: ./src/code-property-graph-generator
Expand All @@ -33,7 +33,7 @@ services:
- ./assets/input_codebase:/app/input_codebase:ro
working_dir: /app
autopatch-fuzzing-service:
image: ghcr.io/sysec-uic/autopatch-llm/fuzzing-service:0.9.0
image: ghcr.io/sysec-uic/autopatch-llm/fuzzing-service:0.9.1
networks:
- autopatch-llm_autopatch-docker-network
build: ./src/fuzzing-service
Expand All @@ -49,7 +49,7 @@ services:
- ./src/fuzzing-service/seed_input:/app/seed_input:ro
working_dir: /app
autopatch-patch-evaluation-service:
image: ghcr.io/sysec-uic/autopatch-llm/patch-evaluation-service:0.9.0
image: ghcr.io/sysec-uic/autopatch-llm/patch-evaluation-service:0.9.1
networks:
- autopatch-llm_autopatch-docker-network
build: ./src/patch-evaluation-service
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[project]
name = 'autopatch'
version = '0.9.0'
version = '0.9.1'
requires-python = '>=3.12.3'
description = ''
authors = [
Expand Down
2 changes: 1 addition & 1 deletion src/autopatchdatatypes/pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[project]
name = 'autopatchdatatypes'
version = '0.9.0'
version = '0.9.1'
description = 'Shared data types for the autopatch project'
authors = [
{ name = 'Robert D. Hernandez', email = 'rherna70@uic.edu' }
Expand Down
2 changes: 1 addition & 1 deletion src/autopatchpubsub/pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[project]
name = 'autopatchpubsub'
version = '0.9.0'
version = '0.9.1'
description = 'Message Broker Publish Subscribe Facade for the autopatch project'
authors = [
{ name = 'Robert D. Hernandez', email = 'rherna70@uic.edu' }
Expand Down
2 changes: 1 addition & 1 deletion src/autopatchshared/pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[project]
name = 'autopatchshared'
version = '0.9.0'
version = '0.9.1'
requires-python = '>=3.12.3'
readme = 'README.md'
authors = [
Expand Down
6 changes: 3 additions & 3 deletions src/code-property-graph-generator/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -46,9 +46,9 @@ RUN apt-get install -y --no-install-recommends \
WORKDIR /deps

COPY requirements.txt .
COPY autopatchshared-0.9.0-py3-none-any.whl .
COPY autopatchdatatypes-0.9.0-py3-none-any.whl .
COPY autopatchpubsub-0.9.0-py3-none-any.whl .
COPY autopatchshared-0.9.1-py3-none-any.whl .
COPY autopatchdatatypes-0.9.1-py3-none-any.whl .
COPY autopatchpubsub-0.9.1-py3-none-any.whl .

RUN pip install --break-system-packages --no-cache-dir -r requirements.txt

Expand Down
2 changes: 1 addition & 1 deletion src/code-property-graph-generator/config/config.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"appname": "autopatch.code-property-graph-generator",
"version": "0.9.0-beta",
"version": "0.9.1-beta",
"logging_config" : "config/logging-config.json",
"scan_tool_full_path": "/opt/joern/joern-cli/joern-scan",
"concurrency_threshold": 10,
Expand Down
2 changes: 1 addition & 1 deletion src/code-property-graph-generator/config/dev-config.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"appname": "autopatch.code-property-graph-generator",
"version": "0.9.0-beta",
"version": "0.9.1-beta",
"logging_config" : "/workspace/AutoPatch-LLM/src/code-property-graph-generator/config/dev-logging-config.json",
"scan_tool_full_path": "/opt/joern/joern-cli/joern-scan",
"concurrency_threshold": 10,
Expand Down
2 changes: 1 addition & 1 deletion src/code-property-graph-generator/pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[project]
name = 'code-property-graph-generator'
version = '0.9.0'
version = '0.9.1'
requires-python = '>=3.12.3'
readme = 'README.md'
authors = [
Expand Down
6 changes: 3 additions & 3 deletions src/code-property-graph-generator/requirements.txt
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
autopatchdatatypes-0.9.0-py3-none-any.whl
autopatchshared-0.9.0-py3-none-any.whl
autopatchpubsub-0.9.0-py3-none-any.whl
autopatchdatatypes-0.9.1-py3-none-any.whl
autopatchshared-0.9.1-py3-none-any.whl
autopatchpubsub-0.9.1-py3-none-any.whl
paho-mqtt==2.1.0
cloudevents==1.11.0
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@

def mock_CpgSvcConfig() -> CpgSvcConfig:
mock_config = {
"version": "0.5.0-alpha",
"version": "0.9.1-beta",
"appname": "autopatch.code-property-graph-generator",
"logging_config": "/workspace/AutoPatch-LLM/src/code-property-graph-generator/config/dev-logging-config.json",
"scan_tool_full_path": "/opt/joern/joern-cli/joern-scan",
Expand Down
6 changes: 3 additions & 3 deletions src/fuzzing-service/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -19,9 +19,9 @@ RUN apt-get install -y --no-install-recommends \
WORKDIR /deps

COPY requirements.txt .
COPY autopatchshared-0.9.0-py3-none-any.whl .
COPY autopatchdatatypes-0.9.0-py3-none-any.whl .
COPY autopatchpubsub-0.9.0-py3-none-any.whl .
COPY autopatchshared-0.9.1-py3-none-any.whl .
COPY autopatchdatatypes-0.9.1-py3-none-any.whl .
COPY autopatchpubsub-0.9.1-py3-none-any.whl .

RUN pip install --break-system-packages --no-cache-dir -r requirements.txt

Expand Down
2 changes: 1 addition & 1 deletion src/fuzzing-service/config/config.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"appname": "autopatch.fuzzing-service",
"version": "0.9.0-beta",
"version": "0.9.1-beta",
"logging_config" : "config/logging-config.json",
"concurrency_threshold": 10,
"message_broker_host": "mosquitto",
Expand Down
2 changes: 1 addition & 1 deletion src/fuzzing-service/config/dev-config.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"appname": "autopatch.fuzzing-service",
"version": "0.9.0-alpha",
"version": "0.9.1-alpha",
"logging_config" : "/workspace/AutoPatch-LLM/src/fuzzing-service/config/dev-logging-config.json",
"concurrency_threshold": 10,
"message_broker_host": "mosquitto",
Expand Down
2 changes: 1 addition & 1 deletion src/fuzzing-service/pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[project]
name = 'autopatch.fuzzing-service'
version = '0.9.0'
version = '0.9.1'
requires-python = '>=3.12.3'
readme = 'README.md'
authors = [
Expand Down
6 changes: 3 additions & 3 deletions src/fuzzing-service/requirements.txt
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
paho-mqtt==2.1.0
autopatchdatatypes-0.9.0-py3-none-any.whl
autopatchshared-0.9.0-py3-none-any.whl
autopatchpubsub-0.9.0-py3-none-any.whl
autopatchdatatypes-0.9.1-py3-none-any.whl
autopatchshared-0.9.1-py3-none-any.whl
autopatchpubsub-0.9.1-py3-none-any.whl
cloudevents==1.11.0
2 changes: 1 addition & 1 deletion src/fuzzing-service/test_fuzzing_service.py
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@

def mock_FuzzSvcConfig() -> FuzzSvcConfig:
mock_config = {
"version": "0.9.0-beta",
"version": "0.9.1-beta",
"appname": "autopatch.fuzzing-service",
"logging_config": "config/logging-config.json",
"concurrency_threshold": 10,
Expand Down
6 changes: 3 additions & 3 deletions src/llm-dispatch-service/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -17,9 +17,9 @@ RUN apt-get install -y --no-install-recommends \
WORKDIR /deps

COPY requirements.txt .
COPY autopatchshared-0.9.0-py3-none-any.whl .
COPY autopatchdatatypes-0.9.0-py3-none-any.whl .
COPY autopatchpubsub-0.9.0-py3-none-any.whl .
COPY autopatchshared-0.9.1-py3-none-any.whl .
COPY autopatchdatatypes-0.9.1-py3-none-any.whl .
COPY autopatchpubsub-0.9.1-py3-none-any.whl .

RUN pip install --break-system-packages --no-cache-dir -r requirements.txt

Expand Down
2 changes: 1 addition & 1 deletion src/llm-dispatch-service/config/config.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"appName": "autopatch.llm-dispatch-service",
"appVersion": "0.9.0-beta",
"appVersion": "0.9.1-beta",
"appDescription": "A system for managing and dispatching requests to various language models.",
"cpg_gen_wait_time": 240,
"cpg_scan_result_input_topic" : "autopatch/cpg-scan-result",
Expand Down
2 changes: 1 addition & 1 deletion src/llm-dispatch-service/config/dev-config.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"appName": "autopatch.llm-dispatch-service",
"appVersion": "0.9.0-beta",
"appVersion": "0.9.1-beta",
"appDescription": "A system for managing and dispatching requests to various language models.",
"cpg_gen_wait_time": 240,
"cpg_scan_result_input_topic" : "autopatch/cpg-scan-result",
Expand Down
2 changes: 1 addition & 1 deletion src/llm-dispatch-service/pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[project]
name = 'autopatch.llm-dispatch'
version = '0.9.0'
version = '0.9.1'
requires-python = '>=3.12.3'
readme = 'README.md'
authors = [
Expand Down
6 changes: 3 additions & 3 deletions src/llm-dispatch-service/requirements.txt
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
paho-mqtt==2.1.0
autopatchdatatypes-0.9.0-py3-none-any.whl
autopatchshared-0.9.0-py3-none-any.whl
autopatchpubsub-0.9.0-py3-none-any.whl
autopatchdatatypes-0.9.1-py3-none-any.whl
autopatchshared-0.9.1-py3-none-any.whl
autopatchpubsub-0.9.1-py3-none-any.whl
openai==1.69.0
cloudevents==1.11.0
2 changes: 1 addition & 1 deletion src/llm-dispatch-service/test_llm_dispatch_service.py
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
def mock_LLMDispatchSvcConfig() -> LLMDispatchSvcConfig:
mock_config = {
"appName": "autopatch.llm-dispatch",
"appVersion": "0.9.0-beta",
"appVersion": "0.9.1-beta",
"appDescription": "A system for managing and dispatching requests to various language models.",
"cpg_gen_wait_time": 1,
"system_prompt_full_path": "/workspace/AutoPatch-LLM/src/llm-dispatch/data/prompts/system_prompt.txt",
Expand Down
6 changes: 3 additions & 3 deletions src/patch-evaluation-service/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -16,9 +16,9 @@ WORKDIR /deps

COPY requirements.txt .

COPY autopatchdatatypes-0.9.0-py3-none-any.whl .
COPY autopatchshared-0.9.0-py3-none-any.whl .
COPY autopatchpubsub-0.9.0-py3-none-any.whl .
COPY autopatchdatatypes-0.9.1-py3-none-any.whl .
COPY autopatchshared-0.9.1-py3-none-any.whl .
COPY autopatchpubsub-0.9.1-py3-none-any.whl .

RUN pip install --break-system-packages --no-cache-dir -r requirements.txt

Expand Down
2 changes: 1 addition & 1 deletion src/patch-evaluation-service/config/config.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"appname": "autopatch.patch-evaluation-service",
"version": "0.9.0-beta",
"version": "0.9.1-beta",
"input_codebase_full_path": "/app/input_codebase",
"logging_config" : "/app/config/logging-config.json",
"patch_eval_results_full_path":"/app/data",
Expand Down
2 changes: 1 addition & 1 deletion src/patch-evaluation-service/config/dev-config.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"appname": "autopatch.patch-evaluation-service",
"version": "0.9.0-beta",
"version": "0.9.1-beta",
"input_codebase_full_path": "/workspace/AutoPatch-LLM/assets/input_codebase",
"logging_config" : "/workspace/AutoPatch-LLM/src/patch-evaluation-service/config/dev-logging-config.json",
"patch_eval_results_full_path":"/workspace/AutoPatch-LLM/src/patch-evaluation-service/data",
Expand Down
2 changes: 1 addition & 1 deletion src/patch-evaluation-service/pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[project]
name = 'autopatch.patch-evaluation-service'
version = '0.9.0'
version = '0.9.1'
requires-python = '>=3.12.3'
readme = 'README.md'
authors = [
Expand Down
6 changes: 3 additions & 3 deletions src/patch-evaluation-service/requirements.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
autopatchdatatypes-0.9.0-py3-none-any.whl
autopatchshared-0.9.0-py3-none-any.whl
autopatchpubsub-0.9.0-py3-none-any.whl
autopatchdatatypes-0.9.1-py3-none-any.whl
autopatchshared-0.9.1-py3-none-any.whl
autopatchpubsub-0.9.1-py3-none-any.whl
paho-mqtt==2.1.0
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ def kill(self):
def dummy_config_content() -> Dict:
return {
"appname": "autopatch.patch-evaluation-service",
"version": "0.9.0-beta",
"version": "0.9.1-beta",
"logging_config": "/workspace/AutoPatch-LLM/src/patch-evaluation-service/config/dev-logging-config.json",
"patch_eval_results_full_path": "/workspace/AutoPatch-LLM/src/patch-evaluation-service/data",
"patched_codes_path": "/workspace/AutoPatch-LLM/src/patch-evaluation-service/patched_codes",
Expand Down
Loading