This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #include <stdio.h> | |
| #include <stdlib.h> | |
| #include <string.h> | |
| #define MIN(x, y) (((x) < (y)) ? (x) : (y)) | |
| typedef struct { | |
| int *data; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/usr/bin/env python3 | |
| """ | |
| Llama3-based Agentic Coding System | |
| Implements the Claude Code architecture with Llama3 as the LLM | |
| """ | |
| import re | |
| import json | |
| import subprocess | |
| import os |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #include <algorithm> | |
| #include <vector> | |
| #include <tuple> | |
| #include <cmath> | |
| #include <cstdio> | |
| #include <limits> | |
| #include <memory> | |
| const int SYMBOLIC_GAP = -1; |
OlderNewer