Skip to main content

workspacex is a Python library for managing AIGC (AI-Generated Content) artifacts. It provides a collaborative workspace environment for handling multiple artifacts with features like version control, update notifications, artifact management, and pluggable storage and embedding backends.

Project description

workspacex

workspacex is a Python library for managing AIGC (AI-Generated Content) artifacts. It provides a collaborative workspace environment for handling multiple artifacts with features like version control, update notifications, artifact management, and pluggable storage and embedding backends.


Features

  • Artifact Management: Create, update, and manage different types of artifacts (text, code, etc.)
  • Workspace Organization: Group related artifacts in collaborative workspaces
  • Storage Backends: Local file system and S3-compatible storage (via s3fs)
  • Embedding Backends: OpenAI-compatible and Ollama embedding support

Project Structure

workspacex/
  src/
    workspacex/   # Main package code
      artifact.py
      code_artifact.py
      workspace.py
      observer.py
      storage/
        local.py
        s3.py
        base.py
      embedding/
        openai_compatible.py
        ollama.py
        base.py
      extractor/
        noval_extractor.py
        base.py
      reranker/
        base.py
      utils/
        timeit.py
    examples/     # Example scripts
      embeddings/
      data/
      novel_chapters/

Environment Setup

  1. Install dependencies
    poetry install
    

Usage

Basic Example

import asyncio
import logging

from workspacex import WorkSpace, ArtifactType, get_observer, on_artifact_create

@on_artifact_create
async def handle_artifact_create(artifact):
    logging.info(f"Artifact created: {artifact.artifact_id}")

if __name__ == '__main__':
    workspace = WorkSpace.from_local_storages(workspace_id="demo")
    asyncio.run(workspace.create_artifact(ArtifactType.TEXT, "artifact_001"))

Artifacts and workspace data will be stored in data/workspaces.

Storage Backends

  • Local: Default, stores data in the local file system.
    from workspacex.storage.local import LocalPathRepository
    repo = LocalPathRepository("data/workspaces/demo")
    
  • S3: Store artifacts in S3-compatible storage.
    from workspacex.storage.s3 import S3Repository
    repo = S3Repository(storage_path="demo", bucket="your-bucket", s3_kwargs={"key": "...", "secret": "..."})
    

Embedding Backends

  • OpenAI-Compatible:
    from workspacex.embedding.openai_compatible import OpenAICompatibleEmbeddings, EmbeddingsConfig
    config = EmbeddingsConfig(api_key="sk-...", base_url="https://api.openai.com/v1", model_name="text-embedding-ada-002")
    embedder = OpenAICompatibleEmbeddings(config)
    
  • Ollama:
    from workspacex.embedding.ollama import OllamaEmbeddings, OllamaConfig
    config = OllamaConfig(model="nomic-embed-text", base_url="http://localhost:11434")
    embedder = OllamaEmbeddings(config)
    

Example Scripts

  • See src/examples/ for ready-to-run scripts:
    • noval_example.py
    • embeddings/openai_example.py
    • embeddings/ollama_embedding_example.py
    • image_examples.py

Run an example:

export PYTHONPATH=src
python src/examples/embeddings/openai_example.py

Notes

  • All source code is under src/.
  • Make sure to activate the correct conda environment before using Poetry commands or running code.
  • If you see ModuleNotFoundError: No module named 'workspacex', ensure your PYTHONPATH includes src.
  • Storage and embedding backends are pluggable and extensible.
  • For S3 support, install s3fs and configure credentials as needed.

Let me know if you want to add more details, such as advanced usage, API docs, or contribution guidelines!

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

workspacex-0.1.3.tar.gz (23.3 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

workspacex-0.1.3-py3-none-any.whl (32.9 kB view details)

Uploaded Python 3

File details

Details for the file workspacex-0.1.3.tar.gz.

File metadata

  • Download URL: workspacex-0.1.3.tar.gz
  • Upload date:
  • Size: 23.3 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: poetry/2.1.3 CPython/3.10.16 Darwin/24.3.0

File hashes

Hashes for workspacex-0.1.3.tar.gz
Algorithm Hash digest
SHA256 2d3779776b935ab1e597ee8894a9940f09c0a5b1ca059693d1b0fb8dd9ef55ff
MD5 2609d45a7f7f14742c44fb2537918ae4
BLAKE2b-256 0aa655bae157cf7133de2caca896743f93a2efafadd272951935cca4a85be49f

See more details on using hashes here.

File details

Details for the file workspacex-0.1.3-py3-none-any.whl.

File metadata

  • Download URL: workspacex-0.1.3-py3-none-any.whl
  • Upload date:
  • Size: 32.9 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: poetry/2.1.3 CPython/3.10.16 Darwin/24.3.0

File hashes

Hashes for workspacex-0.1.3-py3-none-any.whl
Algorithm Hash digest
SHA256 fc12ec7d609dc220958ad7e836aa90350bc0c439653ddc86da0247a368b2ad06
MD5 ae0e4d7bdc5b9561713d81ae8bf6a590
BLAKE2b-256 c575d2c8a7c4249053bafe002e8daa3fddc53ec8d0f7250dc4683e89e4da1592

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page