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:
doum1004
2026-04-13 00:05:30 -04:00
parent 51b4ce6ca7
commit b19bd2e408
25 changed files with 1008 additions and 6 deletions

53
.github/workflows/demo-viz.yml vendored Normal file
View 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