{"id":20054530,"url":"https://github.com/fioshi/java-ia-prompter-eurofarma","last_synced_at":"2026-05-18T15:31:21.061Z","repository":{"id":255422523,"uuid":"841433785","full_name":"Fioshi/java-ia-prompter-eurofarma","owner":"Fioshi","description":"Projeto Challenger do ano de 2024 para EuroFarma","archived":false,"fork":false,"pushed_at":"2024-09-27T23:27:47.000Z","size":80,"stargazers_count":1,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-08-02T13:45:11.142Z","etag":null,"topics":["hugging-face","java","llm","spring"],"latest_commit_sha":null,"homepage":"","language":"Java","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/Fioshi.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2024-08-12T11:58:05.000Z","updated_at":"2024-09-27T23:27:50.000Z","dependencies_parsed_at":"2024-08-29T23:03:43.143Z","dependency_job_id":"c5408ca6-fd6f-478b-8b57-449dc0ac2098","html_url":"https://github.com/Fioshi/java-ia-prompter-eurofarma","commit_stats":null,"previous_names":["fioshi/ai-prompter-eurofarma","fioshi/java-ia-prompter-eurofarma"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/Fioshi/java-ia-prompter-eurofarma","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Fioshi%2Fjava-ia-prompter-eurofarma","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Fioshi%2Fjava-ia-prompter-eurofarma/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Fioshi%2Fjava-ia-prompter-eurofarma/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Fioshi%2Fjava-ia-prompter-eurofarma/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/Fioshi","download_url":"https://codeload.github.com/Fioshi/java-ia-prompter-eurofarma/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Fioshi%2Fjava-ia-prompter-eurofarma/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":33182694,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-18T09:27:30.708Z","status":"ssl_error","status_checked_at":"2026-05-18T09:27:28.300Z","response_time":71,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.5:443 state=error: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["hugging-face","java","llm","spring"],"created_at":"2024-11-13T12:41:03.224Z","updated_at":"2026-05-18T15:31:21.046Z","avatar_url":"https://github.com/Fioshi.png","language":"Java","funding_links":[],"categories":[],"sub_categories":[],"readme":"# **AI PROMPTER**\n\n\u003e Um projeto de Inteligência Artificial usando Langchain4j para processamento de linguagem natural.\n\n## **Índice**\n- [Visão Geral](#visão-geral)\n- [Funcionalidades](#funcionalidades)\n\n## **Visão Geral**\nEste projeto é uma aplicação de \nInteligência Artificial que utiliza o \nLangchain4j, uma biblioteca poderosa para a \ncriação de modelos de linguagem natural em Java. \nO objetivo deste projeto é \ncriar uma API que utiliza de um modelo de processamento de linguagem natural para responder a questões\nou fornecer informações baseadas em uma base de dados interna.\n\n## **Funcionalidades**\n- **Processamento de Linguagem Natural:** Utiliza o Langchain4j para interpretar e gerar texto.\n- **Respostas Dinâmicas:** Responde a perguntas com base em dados fornecidos e treinados.\n- **Integração Fácil:** Pode ser facilmente integrado com outras aplicações Java.\n\n## **Diagramas**\n```mermaid\n    erDiagram\n    tb_user {\n        BIGINT id_user PK \"AUTO_INCREMENT\"\n        VARCHAR nome \"NOT NULL\"\n        VARCHAR email \"NOT NULL\"\n        VARCHAR password \"NOT NULL\"\n    }\n\n    tb_data {\n        BIGINT id_data PK \"AUTO_INCREMENT\"\n        MEDIUMTEXT content \"NOT NULL\"\n    }\n\n    tb_answer {\n        BIGINT id_answer PK \"AUTO_INCREMENT\"\n        BIGINT id_user FK \"NOT NULL\"\n        LONGTEXT question \"NOT NULL\"\n        LONGTEXT answer \"NOT NULL\"\n    }\n\n    tb_user ||--o{ tb_answer : \"\"\n    tb_answer }o--|| tb_data : \"\"\n```\n\n## Diagrama C4\n\n```mermaid\n  ---\nconfig:\n  theme: mc\n---\nC4Context\n      title Diagrama de Contexto para aplicativo da Euro-Farma\n      Enterprise_Boundary(b0, \"Interface de Usúario\") {\n        Person(customerA, \"Funcionario Euro-Farma\", \"Um colaborador interno euro-farma com acesso ao APP\")\n        System(SystemAA, \"Aplicativo Euro-Farma\", \"Permitira que os usuarios façam seus prompts para a EURO-IA\")\n        Enterprise_Boundary(b1, \"Back-End\") {\n          SystemDb_Ext(SystemE, \"API\", \"API para o sistema da EURO-IA\")\n          \n          SystemDb(SystemD, \"Banco de dados Da aplicação\", \"\")\n        }\n      }\n      System_Boundary(b2, \"Sistemas Externos\") {\n            System_Ext(SystemC, \"LM Studio\", \"Aplicativo para rodar modelo de LLM\")\n            SystemDb(SystemF, \"Banco de dados Euro-Farma\", \"\")\n          }\n      BiRel(customerA, SystemAA, \"Uses\")\n      BiRel(SystemAA, SystemE, \"Uses\")\n      BiRel(SystemE, SystemD, \"\")\n      BiRel(SystemF, SystemE, \"\")\n      Rel(SystemE, SystemC, \"Sends Request to\")\n      UpdateElementStyle(customerA, $fontColor=\"white\", $bgColor=\"grey\", $borderColor=\"blue\")\n      UpdateRelStyle(customerA, SystemAA, $textColor=\"blue\", $lineColor=\"blue\", $offsetX=\"5\")\n      UpdateRelStyle(SystemAA, SystemE, $textColor=\"blue\", $lineColor=\"blue\", $offsetY=\"-10\")\n      UpdateRelStyle(SystemAA, SystemC, $textColor=\"blue\", $lineColor=\"blue\", $offsetY=\"-40\", $offsetX=\"-50\")\n      UpdateRelStyle(SystemC, SystemE, $textColor=\"red\", $lineColor=\"red\", $offsetX=\"-50\", $offsetY=\"20\")\n      UpdateLayoutConfig($c4ShapeInRow=\"3\", $c4BoundaryInRow=\"1\")\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ffioshi%2Fjava-ia-prompter-eurofarma","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Ffioshi%2Fjava-ia-prompter-eurofarma","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ffioshi%2Fjava-ia-prompter-eurofarma/lists"}