From 33024f9795b170a85fa51f8a5a36f9ebcfb84bc2 Mon Sep 17 00:00:00 2001 From: Dudi Zimberknopf Date: Wed, 3 Jul 2024 14:58:48 +0300 Subject: [PATCH] add falkordb service --- .github/workflows/test.yml | 5 +++++ config.yaml | 35 ----------------------------------- 2 files changed, 5 insertions(+), 35 deletions(-) delete mode 100644 config.yaml diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index ac3981f..39bc990 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -10,6 +10,11 @@ jobs: contents: "read" id-token: "write" runs-on: ubuntu-latest + services: + falkordb: + image: falkordb/falkordb:latest + ports: + - 6379:6379 steps: - uses: actions/checkout@v4 diff --git a/config.yaml b/config.yaml deleted file mode 100644 index a225d69..0000000 --- a/config.yaml +++ /dev/null @@ -1,35 +0,0 @@ -ontology: - model_name: "gemini-1.5-flash-001" - max_output_tokens: 8192 - max_input_characters: 500000 - temperature: 1.5 - top_p: 0.1 - min_urls_count: 5 - output_file: output/ontology.json - cache_file: cache/scrape_cache.json - max_workers: 16 - -extract_data: - model_name: "gemini-1.5-flash-001" - max_output_tokens: 8192 - max_input_characters: 500000 - temperature: 1.5 - top_p: 0.1 - ontology_file: output/ontology.json - cache_file: cache/scrape_cache.json - max_workers: 16 - -query_graph: - ontology_file: output/ontology.json - cypher: - model_name: "gemini-1.5-flash-001" - max_output_tokens: 8192 - max_input_characters: 500000 - temperature: 1.5 - top_p: 0.1 - qa: - model_name: "gemini-1.5-flash-001" - max_output_tokens: 8192 - max_input_characters: 500000 - temperature: 1.5 - top_p: 0.1