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