Instructions to use jeduardogruiz/Mixtral_ether with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Adapters
How to use jeduardogruiz/Mixtral_ether with Adapters:
from adapters import AutoAdapterModel model = AutoAdapterModel.from_pretrained("fill-in-model-name") model.load_adapter("jeduardogruiz/Mixtral_ether", set_active=True) - Notebooks
- Google Colab
- Kaggle
File size: 776 Bytes
ac4c8b7 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 | using OKX.Api;
using System;
using System.Collections.Generic;
namespace Mixtral.Models
{
public class OKXCryptoSender
{
private OKXRestApiClient _okxClient;
public OKXCryptoSender(string apiKey, string apiSecret, string apiPassphrase)
{
_okxClient = new OKXRestApiClient();
_okxClient.SetApiCredentials(apiKey, apiSecret, apiPassphrase);
}
public async Task MigrateAssetsInBulk(IEnumerable<object> assetsToMigrate, int queueSize)
{
// Implementar la l贸gica de migraci贸n de activos en bulk aqu铆
}
public async Task CreateConnection(string symbol, decimal amount)
{
// Implementar la l贸gica de creaci贸n de conexiones aqu铆
}
}
} |