rapidfireai 0.9.9__py3-none-any.whl → 0.9.10__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.

Potentially problematic release.


This version of rapidfireai might be problematic. Click here for more details.

rapidfireai/cli.py CHANGED
@@ -342,10 +342,10 @@ def run_init():
342
342
  return 0
343
343
 
344
344
  def main():
345
- """Main entry point for the rapidfire-start command."""
345
+ """Main entry point for the rapidfireai command."""
346
346
  parser = argparse.ArgumentParser(
347
347
  description="RapidFire AI - Start/stop/manage services",
348
- prog="rapidfire"
348
+ prog="rapidfireai"
349
349
  )
350
350
 
351
351
  parser.add_argument(
rapidfireai/start.sh CHANGED
@@ -486,9 +486,9 @@ show_status() {
486
486
  fi
487
487
 
488
488
  echo ""
489
- print_status "Available endpoints:"
490
- echo "- Frontend: http://$FRONTEND_HOST:$FRONTEND_PORT"
491
- echo "- API Server: http://$API_HOST:$API_PORT"
489
+ print_success "🚀 RapidFire Frontend is ready!"
490
+ print_status "👉 Open your browser and navigate to: http://$FRONTEND_HOST:$FRONTEND_PORT"
491
+ print_status " (Click the link above or copy/paste the URL into your browser)"
492
492
 
493
493
  # Show log file status
494
494
  echo ""
rapidfireai/version.py CHANGED
@@ -2,5 +2,5 @@
2
2
  Version information for RapidFire AI
3
3
  """
4
4
 
5
- __version__ = "0.9.9"
6
- __version_info__ = (0, 9, 9)
5
+ __version__ = "0.9.10"
6
+ __version_info__ = (0, 9, 10)
@@ -1,11 +1,11 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: rapidfireai
3
- Version: 0.9.9
4
- Summary: RapidFire AI - Machine Learning Platform
3
+ Version: 0.9.10
4
+ Summary: RapidFire AI: Rapid Experimentation Engine for Customizing LLMs
5
5
  Author-email: "RapidFire AI Inc." <support@rapidfire.ai>
6
6
  License: Apache-2.0
7
7
  Project-URL: Homepage, https://rapidfire.ai
8
- Keywords: ai,rapidfire,deep-learning,artificial-intelligence,machine-learning,mlflow,experiment-tracking
8
+ Keywords: ai,rapidfire,rapidfireai,deep-learning,artificial-intelligence,machine-learning,mlflow,experiment-tracking
9
9
  Classifier: Development Status :: 4 - Beta
10
10
  Classifier: Intended Audience :: Developers
11
11
  Classifier: Intended Audience :: Science/Research
@@ -63,7 +63,7 @@ Rapid experimentation for easier, faster, and more impactful fine-tuning and pos
63
63
 
64
64
  RapidFire AI is a new experiment execution framework that transforms your LLM customization experimentation from slow, sequential processes into rapid, intelligent workflows with hyperparallelized training, dynamic real-time experiment control, and automatic multi-GPU system orchestration.
65
65
 
66
- ![Usage workflow of RapidFire AI](./usage.png)
66
+ ![Usage workflow of RapidFire AI](https://raw.githubusercontent.com/RapidFireAI/rapidfireai/main/usage.png)
67
67
 
68
68
 
69
69
  ## Getting Started
@@ -82,10 +82,10 @@ source oss_venv/bin/activate
82
82
  pip install rapidfireai
83
83
 
84
84
  # install specific dependencies and initialize rapidfire
85
- rapidfire init
85
+ rapidfireai init
86
86
 
87
87
  # start the rapidfire server
88
- rapidfire start
88
+ rapidfireai start
89
89
 
90
90
  # open up example notebook and start experiment
91
91
  ```
@@ -94,6 +94,11 @@ rapidfire start
94
94
 
95
95
  ### Troubleshooting
96
96
 
97
+ For a quick system diagnostics report (Python env, relevant packages, GPU/CUDA, and key environment variables), run:
98
+ ```bash
99
+ rapidfireai doctor
100
+ ```
101
+
97
102
  If you encounter port conflicts, you can kill existing processes:
98
103
  ```bash
99
104
  lsof -t -i:5002 | xargs kill -9 # mlflow
@@ -1,8 +1,8 @@
1
1
  rapidfireai/__init__.py,sha256=mSV8CiaJ9LwjCpMdHSBd9bM-JBijDx-lc8hGny1KEsQ,368
2
- rapidfireai/cli.py,sha256=A6hSRsUAzL0Uo-6JMzYpb_YClrWFyoZjyLob3OQprHw,14476
2
+ rapidfireai/cli.py,sha256=MhqpAFkVkqyOc197MnSZaeDlaoN0x4XL6kuYWr3bDBY,14474
3
3
  rapidfireai/experiment.py,sha256=jrycddPjS31zSBzcRYDQh6oxJEPw5PjfMsZN5dkGc_s,6754
4
- rapidfireai/start.sh,sha256=SukxhvLrLrxMSisKMlL6zaOpxmVboQiCeaaPw0N0vFo,20763
5
- rapidfireai/version.py,sha256=BDnMWj_SU0dPtTGuxNphAptiTmkfPwACgnkuGniH-1w,97
4
+ rapidfireai/start.sh,sha256=qskOeWeVh9mkLmnLMpWTzwchqijUAesbB2qEzYRtrtU,20846
5
+ rapidfireai/version.py,sha256=4Kvc3fe_9Zyh_tRvg6el6kkBdISgR3ALk1FFO1867ds,99
6
6
  rapidfireai/automl/__init__.py,sha256=QnzWa33i9aMp1NatoQYJFPrGZchtTUAPkgSOyyDXbSU,501
7
7
  rapidfireai/automl/base.py,sha256=pF6NQMr8DeEFm4PBbmbUbNAtP0S-yDfeUnKMqz2D9Zk,1947
8
8
  rapidfireai/automl/datatypes.py,sha256=rbocXidGekpeukKQuMSZLFK6h6h4PIo1Fvre2FWmhqU,1470
@@ -310,9 +310,9 @@ rapidfireai/utils/serialize.py,sha256=_A9egs2uhlYNGT3Ntv2fzH7rwp6I-GGVoS4ViY3suf
310
310
  rapidfireai/utils/shm_manager.py,sha256=jc38D3GdP1bZyDR-wnQrlCSRW4c_Z_v9rtrZCAJ7-C4,21483
311
311
  rapidfireai/utils/trainer_config.py,sha256=91X4-Z8aZl7W-W6Yf-wQINeFPFIf0gvzKT6Z3mfgYXA,587
312
312
  rapidfireai/utils/worker_manager.py,sha256=LsXnXC2yDwnIp7tm1shpI6DMpif6XGtZ-4kDoo302tk,7971
313
- rapidfireai-0.9.9.dist-info/licenses/LICENSE,sha256=xx0jnfkXJvxRnG63LTGOxlggYnIysveWIZ6H3PNdCrQ,11357
314
- rapidfireai-0.9.9.dist-info/METADATA,sha256=cgVnVMDfBDci0y_sjo7e37rjkr7I_W4lB2qTAALjU8o,9842
315
- rapidfireai-0.9.9.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
316
- rapidfireai-0.9.9.dist-info/entry_points.txt,sha256=-384aiPXnSnhFE4OTDAu1DmqHL5X4tEzTIvSee0x6nc,51
317
- rapidfireai-0.9.9.dist-info/top_level.txt,sha256=A28FddyVhe1LHCbvbigLRtmEWKHGVgOVKH1_FfbUQ2U,12
318
- rapidfireai-0.9.9.dist-info/RECORD,,
313
+ rapidfireai-0.9.10.dist-info/licenses/LICENSE,sha256=xx0jnfkXJvxRnG63LTGOxlggYnIysveWIZ6H3PNdCrQ,11357
314
+ rapidfireai-0.9.10.dist-info/METADATA,sha256=vqE-GQSz4KIv7o8eGx3_E-zSk5CGrvcZgfhlgRRcpMM,10092
315
+ rapidfireai-0.9.10.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
316
+ rapidfireai-0.9.10.dist-info/entry_points.txt,sha256=tuZF1oC4KyQ9H767o83S8Y-ZiGvw_PVADPL1vRykY3g,53
317
+ rapidfireai-0.9.10.dist-info/top_level.txt,sha256=A28FddyVhe1LHCbvbigLRtmEWKHGVgOVKH1_FfbUQ2U,12
318
+ rapidfireai-0.9.10.dist-info/RECORD,,
@@ -0,0 +1,2 @@
1
+ [console_scripts]
2
+ rapidfireai = rapidfireai.cli:main
@@ -1,2 +0,0 @@
1
- [console_scripts]
2
- rapidfire = rapidfireai.cli:main