Skip to content

Releases: ogre-run/miniogre

v0.11.1

15 Nov 21:30
Compare
Choose a tag to compare

Hot fix for the error selecting the proper Dockerfile.

See commit c73597b

v0.11.0

15 Nov 03:34
Compare
Choose a tag to compare

What is implemented in this version

  • Support for javascript/typescript projects
  • Fix for issue #26
  • Fix for issue #29
  • Set timezone according to user's geography
  • Fix malformed bash

v0.11.0-beta.1

12 Nov 18:29
308bb98
Compare
Choose a tag to compare

Partial fix for issue #29

v0.11.0-beta

12 Nov 06:29
Compare
Choose a tag to compare

Fix for issue #26

What changed

Provider ogre is now the default, instead of openai. This enables:

  • Any user with a free ogre API Key, obtainable via app.ogre.run, to use miniogre without requiring a OpenAI or similar account

User must add the Ogre API Key to their environment variables:

export OGRE_API_KEY=<token_generated_on_app.ogre.run>

Approach

We want to make it easier for anyone to use miniogre out of the box. Setting ogre as the default provider enables one to do that

pip install miniogre

miniogre run --> this command runs miniogre with the ogre provider

Users can still select other providers (OpenAI, Gemini, etc) by passing miniogre run --provider openai.

IMPORTANT: Services like OpenAI and similar require API Keys generated by premium accounts. The latest models used by miniogre (e.g. gpt-4o from OpenAI) can only be queried if a key from a paying account is present in the environment variables.

v0.10.2

10 Nov 18:06
Compare
Choose a tag to compare

Fixing issue #25

Explanation:

The error you encountered is due to an ast.ImportFrom node having a None value for node.module. This can happen when using relative imports (e.g., from . import data). In this case, node.module is None, so attempting to call .split() on it raises an AttributeError.

Fix:

We need to check if node.module is not None before splitting it.

See file actions.py, line 225

v0.10.1

07 Nov 04:05
Compare
Choose a tag to compare

Fixes and improvements

v0.10.0

06 Nov 06:26
Compare
Choose a tag to compare

Miniogre v0.10.0

  • Add miniogre ask to enable users to ask questions about the codebase
  • Add miniogre run --provider local for better local dependency resolution

v0.9.3

16 Sep 19:31
Compare
Choose a tag to compare

Update Gemini model version: flash -> pro.

v0.9.2

15 Sep 16:14
Compare
Choose a tag to compare

Hot fix for dry option which was being overriden.

v0.9.1

02 Sep 03:07
Compare
Choose a tag to compare