takara-ai / Website

Hugo static site for the public.
https://takara.ai
1 stars 0 forks source link

GPT Style Interface #80

Open 404missinglink opened 4 days ago

404missinglink commented 4 days ago

Is your feature request related to a problem? Please describe. Users often find it cumbersome to navigate the website using the legacy navigation system, leading to a suboptimal user experience.

Describe the solution you'd like Implement a new LLM-style interface that allows users to interact with the website through natural language queries and commands, complementing the existing navigation system.

Describe alternatives you've considered

Additional context This feature aims to enhance user engagement and accessibility.

404missinglink commented 3 days ago

Proposed Architecture

    graph LR
        A[Commit] --> B[Website markdown]
        A --> C[Private markdown]
        B --> D[CI/CD Pipeline]
        C --> D
        D --> E[Embedding model]
        E --> F[Vector Database]
        G[User] -->|Query| H[LLM]
        H -->|Response| G
        F -->|Retrieve relevant docs| I[Context Augmentation]
        I --> H
        D -->|Continuous updates| F