diff --git a/files/index.html b/files/index.html index c43b1ef..f5ae32a 100644 --- a/files/index.html +++ b/files/index.html @@ -2,91 +2,290 @@
-
- Oracle LAD A-Team
- Cristiano Hoshikawa
- cristiano.hoshikawa@oracle.com
-
+ Oracle LAD A-Team
+ Cristiano Hoshikawa
+ cristiano.hoshikawa@oracle.com
+
- Tutorial in: https://docs.oracle.com/en/learn/oci-genai-pdf
-
+ Tutorial:
+ https://docs.oracle.com/en/learn/oci-genai-pdf
+ REST Service Endpoint:
+ http://demo-orcl-api-ai.hoshikawa.com.br:8101/chat
+
- GraphRAG • Oracle 23ai • Embeddings • LLM • Flask API -
++ This application provides an AI-assisted RFP response engine for + Oracle Cloud Infrastructure (OCI). + It analyzes natural language requirements and returns a + structured, evidence-based technical response. +
+ ++ Enter an RFP requirement or technical question below. + The API will return a structured JSON response. +
+ + + + ++ The service exposes a POST endpoint that accepts a JSON payload. +
+ +
+ curl -X POST http://demo-orcl-api-ai.hoshikawa.com.br:8101/chat \
+ -H "Content-Type: application/json" \
+ -d '{
+ "question": "Does Oracle Cloud Infrastructure (OCI) Compute support online resizing of memory for running virtual machine instances?"
+ }'
+
+
+
+ question (string)
+ Natural language description of an RFP requirement or technical capability.
+ Small wording changes may affect how intent and evidence are interpreted.
+
+ The API always returns a strict and normalized JSON structure, + designed for traceability, auditing, and human validation. +
+ ++ Final assessment of the requirement: + YES, NO, or PARTIAL. + A NO means the requirement is not explicitly satisfied as written. +
+ ++ Indicates the strength of the supporting evidence: + HIGH, MEDIUM, or LOW. +
+ ++ Flags whether the requirement is vague, overloaded, or open to interpretation. +
+ ++ Short explanation justifying the confidence level. +
+ ++ Technical rationale connecting the evidence to the requirement. + This is not marketing text. +
+ ++ List of supporting references: +
++ GraphRAG • Oracle Autonomous Database 23ai • Embeddings • Knowledge Graph • LLM • Flask API +
+ +