mirror of
https://github.com/doum1004/llmwiki-cli.git
synced 2026-05-18 16:57:13 +02:00
Add foundational concepts and entities related to LLMs and AI agents
- Create context-window.md to explain the significance of context window size in LLMs. - Add llm-scaling-laws.md detailing the empirical relationships between model performance and resources. - Introduce retrieval-augmented-generation.md to describe RAG architecture and its advantages. - Add entity pages for key figures and organizations: andrej-karpathy.md, anthropic.md, google-deepmind.md, openai.md, sam-altman.md. - Create sources for foundational papers: attention-is-all-you-need.md, claude-model-card.md, gpt4-technical-report.md, react-paper.md. - Synthesize insights on AI agent patterns and RAG vs fine-tuning in dedicated pages. - Update index.md to include new entities and concepts. - Log all activities related to the wiki's development in log.md.
This commit is contained in:
53
.github/workflows/demo-viz.yml
vendored
Normal file
53
.github/workflows/demo-viz.yml
vendored
Normal file
@@ -0,0 +1,53 @@
|
||||
name: Build Demo Visualization
|
||||
|
||||
on:
|
||||
push:
|
||||
branches: [main]
|
||||
paths:
|
||||
- 'test-wiki-page/**'
|
||||
- 'src/lib/templates.ts'
|
||||
- 'scripts/generate-viz-scripts.ts'
|
||||
- '.github/workflows/demo-viz.yml'
|
||||
|
||||
permissions:
|
||||
pages: write
|
||||
id-token: write
|
||||
contents: read
|
||||
|
||||
concurrency:
|
||||
group: pages
|
||||
cancel-in-progress: false
|
||||
|
||||
jobs:
|
||||
build-and-deploy:
|
||||
runs-on: ubuntu-latest
|
||||
environment:
|
||||
name: github-pages
|
||||
url: ${{ steps.deployment.outputs.page_url }}
|
||||
steps:
|
||||
- uses: actions/checkout@v4
|
||||
- uses: oven-sh/setup-bun@v2
|
||||
with:
|
||||
bun-version: latest
|
||||
- uses: actions/setup-node@v4
|
||||
with:
|
||||
node-version: 20
|
||||
- name: Generate viz scripts from templates
|
||||
run: bun run scripts/generate-viz-scripts.ts .viz-tmp
|
||||
- name: Build graph data
|
||||
env:
|
||||
WIKI_DIR: test-wiki-page/wiki
|
||||
run: node .viz-tmp/build-graph.cjs
|
||||
- name: Build site
|
||||
env:
|
||||
GITHUB_REPOSITORY: ${{ github.repository }}
|
||||
run: node .viz-tmp/build-site.cjs
|
||||
- name: Configure Pages
|
||||
uses: actions/configure-pages@v5
|
||||
- name: Upload artifact
|
||||
uses: actions/upload-pages-artifact@v3
|
||||
with:
|
||||
path: dist
|
||||
- name: Deploy to GitHub Pages
|
||||
id: deployment
|
||||
uses: actions/deploy-pages@v4
|
||||
Reference in New Issue
Block a user