Skip to content

Commit

Permalink
Merge pull request #39 from Zochory/main
Browse files Browse the repository at this point in the history
0.4.15
  • Loading branch information
Zochory authored Aug 15, 2024
2 parents f7c1741 + 7ba9dbf commit 433ce1a
Show file tree
Hide file tree
Showing 13 changed files with 3,464 additions and 4,624 deletions.
25 changes: 25 additions & 0 deletions .devcontainer/devcontainer.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
// For format details, see https://aka.ms/devcontainer.json. For config options, see the
// README at: https://github.com/devcontainers/templates/tree/main/src/python
{
"name": "Python 3",
// Or use a Dockerfile or Docker Compose file. More info: https://containers.dev/guide/dockerfile
"image": "mcr.microsoft.com/devcontainers/python:1-3.10-bookworm",
"features": {
"ghcr.io/devcontainers-contrib/features/poetry:2": {}
}

// Features to add to the dev container. More info: https://containers.dev/features.
// "features": {},

// Use 'forwardPorts' to make a list of ports inside the container available locally.
// "forwardPorts": [],

// Use 'postCreateCommand' to run commands after the container is created.
// "postCreateCommand": "pip3 install --user -r requirements.txt",

// Configure tool-specific properties.
// "customizations": {},

// Uncomment to connect as root instead. More info: https://aka.ms/dev-containers-non-root.
// "remoteUser": "root"
}
10 changes: 5 additions & 5 deletions .env.exemple
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
GRAPHRAG_API_KEY="your api key"
GRAPHRAG_API_BASE="base_url" #optionnal , needed if using custom endpoint
GRAPHRAG_API_VERSION="2023-05-13"
GRAPHRAG_LLM_MODEL="gpt-4o"
GRAPHRAG_DEPLOYMENT_NAME="gpt-4o"
GRAPHRAG_API_KEY="fd7763c639184c20962857cacacd1a38"
GRAPHRAG_API_BASE="https://gpt-4o-fr.openai.azure.com" #optionnal , needed if using custom endpoint
GRAPHRAG_API_VERSION="turbo-2024-04-09"
GRAPHRAG_LLM_MODEL="gpt-4"
GRAPHRAG_DEPLOYMENT_NAME="gpt-4"
GRAPHRAG_EMBEDDING_MODEL="text-embedding-ada-002"
23 changes: 8 additions & 15 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
@@ -1,19 +1,12 @@
# To get started with Dependabot version updates, you'll need to specify which
# package ecosystems to update and where the package manifests are located.
# Please see the documentation for all configuration options:
# https://docs.github.com/code-security/dependabot/dependabot-version-updates/configuration-options-for-the-dependabot.yml-file
# Please see the documentation for more information:
# https://docs.github.com/github/administering-a-repository/configuration-options-for-dependency-updates
# https://containers.dev/guide/dependabot

version: 2
updates:
- package-ecosystem: "npm" # See documentation for possible values
directory: "docsite/" # Location of package manifests
schedule:
interval: "weekly"
- package-ecosystem: "pip" # See documentation for possible values
directory: "/" # Location of package manifests
schedule:
interval: "weekly"
- package-ecosystem: "github-actions"
# Workflow files stored in the default location of `.github/workflows`. (You don't need to specify `/.github/workflows` for `directory`. You can use `directory: "/"`.)
directory: "/"
schedule:
interval: "weekly"
- package-ecosystem: "devcontainers"
directory: "/"
schedule:
interval: weekly
20 changes: 14 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,16 +1,24 @@
# Overview
<div align="left">
<a href="https://pypi.org/project/graphfleet/">
<img alt="PyPI - Downloads" src="https://img.shields.io/pypi/dm/graphfleet"> </a>
<img alt="Pepy Total Downlods" src="https://img.shields.io/pepy/dt/graphfleet">
</a>
<img alt="GitHub License" src="https://img.shields.io/github/license/qredence/graphfleet">
<img alt="GitHub forks" src="https://img.shields.io/github/forks/qredence/graphfleet">
<img alt="GitHub Repo stars" src="https://img.shields.io/github/stars/qredence/graphfleet">
<img alt="X (formerly Twitter) Follow" src="https://img.shields.io/twitter/follow/agenticfleet">
<img alt="Discord" src="https://img.shields.io/discord/1053300403149733969?style=flat&label=discord">




</div>



![image](https://github.com/user-attachments/assets/c3ca5ec8-1bbf-4a9c-988e-e7f5100ea5d5)

<img alt="X (formerly Twitter) Follow" src="https://img.shields.io/twitter/follow/agenticfleet">
<img alt="Discord" src="https://img.shields.io/discord/1053300403149733969?style=for-the-badge&logo=discord">
GraphFleet is an advanced implementation of [GraphRAG from Microsoft](https://github.com/microsoft/graphrag), designed to enhance large language models' ability to reason about complex information and private datasets. It builds upon GraphRAG (Retrieval Augmented Generation using Graph structures) and will gradually adopt its own path to fulfill our roadmap at Qredence.

## GraphFleet
Expand Down Expand Up @@ -78,10 +86,10 @@ GraphFleet uses knowledge graphs to provide substantial improvements in question
Environment Variables: Set up your environment variables in a .env file (refer to the .env.example file for available options). Key variables include:

```sh
export GRAPHRAG_API_KEY="<apikey>"
export GRAPHRAG_API_BASE="custom base api url"
export GRAPHRAG_API_VERSION="version (if not OpenAI)"
export GRAPHRAG_LLM_MODEL="model name"
export GRAPHRAG_API_KEY="fd7763c639184c20962857cacacd1a38"
export GRAPHRAG_API_BASE="https://gpt-4o-fr.openai.azure.com"
export GRAPHRAG_API_VERSION="2024-04-01-preview"
export GRAPHRAG_LLM_MODEL="gpt-4"
export GRAPHRAG_DEPLOYMENT_NAME="model name"
export GRAPHRAG_EMBEDDING_MODEL="embedding model"
```
Expand Down
Loading

0 comments on commit 433ce1a

Please sign in to comment.