https://github.com/matheusadc/integracao_api_gemini
The project aims to implement an integration with the Gemini Large Language Model (LLM). The implementation is based on creating a question-and-answer (QA) program.
https://github.com/matheusadc/integracao_api_gemini
c csv-files prompt
Last synced: 10 months ago
JSON representation
The project aims to implement an integration with the Gemini Large Language Model (LLM). The implementation is based on creating a question-and-answer (QA) program.
- Host: GitHub
- URL: https://github.com/matheusadc/integracao_api_gemini
- Owner: MatheusADC
- Created: 2024-06-15T23:58:47.000Z (almost 2 years ago)
- Default Branch: main
- Last Pushed: 2025-02-25T08:56:34.000Z (over 1 year ago)
- Last Synced: 2025-02-25T09:38:46.686Z (over 1 year ago)
- Topics: c, csv-files, prompt
- Language: C
- Homepage:
- Size: 1.54 MB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
#
Description
The project aims to implement an integration with the Gemini Large Language Model (LLM). The implementation is based on creating a question-and-answer (QA) program with the following specifications:
- The user will be able to send questions to the LLM, which will then provide answers to the questions;
- Questions and answers must be saved in a text file in CSV format, which should also record the timestamp of when they occurred;
- A possible text file format is:
```
USER; 05/06/2024 10h00; Qual a capital do Brasil?;
LLM; 05/06/2024 10h01; Brasília;
```
- It must be possible to send multiple questions to the LLM;
- If there is a communication error, the user must be informed, and the error should be recorded in the file:
```
USER; 05/06/2024 10h00; Qual a capital do Brasil?;
LLM; 05/06/2024 10h01; ERRO NA COMUNICAÇÃO;
```
#
Example
### Windows Terminal - Interaction

### Save history in a .csv file
