Switch to unified view

a b/aiagents4pharma/talk2knowledgegraphs/README.md
1
**Talk2KnowledgeGraphs** is an AI agent designed to interact with biomedical knowledge graphs. Biomedical knowledge graphs contains crucial information in the form of entities (nodes) and their relationships (edges). These graphs are used to represent complex biological systems, such as metabolic pathways, protein-protein interactions, and gene regulatory networks. In order to easily interact with this information, Talk2KnowledgeGraphs uses natural language processing (NLP) to enable users to ask questions and make requests. By simply asking questions or making requests, users can:
2
3
- Dataset loading: load knowledge graph from datasets.
4
- Embedding: embed entities and relationships in the knowledge graph.
5
- Knowledge graph construction: construct a knowledge graph from dataframes.
6
- Subgraph extraction: extract subgraphs from the initial knowledge graph.
7
- Retrieval: retrieve information from the (sub-) knowledge graph.
8
- Reasoning: reason over the (sub-) knowledge graph.
9
- Visualization: visualize the (sub-) knowledge graph.
10
11
## Installation
12
13
### Prerequisites
14
- Python 3.10 or higher
15
16
### Installing Talk2KnowledgeGraphs in two ways
17
18
#### Option 1: Git
19
20
1. Clone the repository:
21
22
    git clone https://github.com/<your-repo>/ aiagents4pharma.git
23
    cd aiagents4pharma/talk2knowledgegraphs
24
25
2. Install the package and its dependencies:
26
27
    pip install .
28
29
3. Alternatively, install from source:
30
31
    pip install -e .
32
33
34
#### Option 2: PyPI *(coming soon)*
35
   ```bash
36
   pip install aiagents4pharma
37
   ```