Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
27 changes: 27 additions & 0 deletions README.core.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
# commit0-core

Core functionality of commit0 - A development and evaluation framework for using language models to generate libraries.

This package contains the core functionality of commit0, excluding the agent-related features. It provides:

- Building and testing utilities
- Docker handling
- Evaluation tools
- Linting capabilities
- Setup and configuration

## Installation

```bash
pip install commit0-core
```

## Usage

The package provides a command-line interface through the `commit0-core` command:

```bash
commit0-core --help
```

For more information, visit the [commit0 documentation](https://commit-0.github.io/).
27 changes: 27 additions & 0 deletions commit0-core/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
# commit0-core

Core functionality of commit0 - A development and evaluation framework for using language models to generate libraries.

This package contains the core functionality of commit0, excluding the agent-related features. It provides:

- Building and testing utilities
- Docker handling
- Evaluation tools
- Linting capabilities
- Setup and configuration

## Installation

```bash
pip install commit0-core
```

## Usage

The package provides a command-line interface through the `commit0-core` command:

```bash
commit0-core --help
```

For more information, visit the [commit0 documentation](https://commit-0.github.io/).
3 changes: 3 additions & 0 deletions commit0-core/commit0_core/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
"""Commit0 Core Library"""

__version__ = "0.1.6"
10 changes: 10 additions & 0 deletions commit0-core/commit0_core/__main__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
from commit0.cli import commit0_app


def main() -> None:
"""Main function to run the CLI"""
commit0_app()


if __name__ == "__main__":
main()
Loading