Skip to content
Merged
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
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[project]
name = "consilium"
version = "0.1.0"
version = "0.3.0"
description = "Multi-LLM council for consensus-driven AI responses"
readme = "README.md"
requires-python = ">=3.10"
Expand Down
2 changes: 1 addition & 1 deletion src/consilium/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
from consilium.model_registry import get_latest, list_models
from consilium.sdk import council_query

__version__ = "0.1.0"
__version__ = "0.3.0"
__all__ = [
"Council",
"CouncilResult",
Expand Down
1 change: 0 additions & 1 deletion src/consilium/__main__.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,6 @@

import argparse
import json
import sys
import textwrap

from consilium.core import Council
Expand Down
3 changes: 1 addition & 2 deletions src/consilium/core.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,12 +12,11 @@
import dataclasses
import string
import time
from typing import Any, Dict, List
from typing import Dict, List

from consilium.cost import CostTracker, TokenUsage
from consilium.providers import (
DEFAULT_CHAIRMAN,
DEFAULT_MODELS,
ProviderConfig,
get_default_models,
parse_model_string,
Expand Down
2 changes: 1 addition & 1 deletion tests/test_council.py
Original file line number Diff line number Diff line change
Expand Up @@ -314,7 +314,7 @@ def capture_images(
models=sample_configs[:1], chairman=sample_configs[0]
)
fake_image = b"\x89PNG\r\n\x1a\n" + b"\x00" * 100
result = council.ask(
council.ask(
"Describe this", images=[fake_image], skip_review=True
)

Expand Down