Skip to content

Commit

Permalink
imports
Browse files Browse the repository at this point in the history
  • Loading branch information
danemadsen committed Feb 13, 2025
1 parent 0f9e40b commit 35a66e5
Show file tree
Hide file tree
Showing 11 changed files with 11 additions and 11 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ To use this package, add `llama` as a [dependency in your pubspec.yaml file](htt

```yaml
dependencies:
lcpp: ^0.0.4
lcpp: ^0.0.5
```
then you can import llama in your Dart code
Expand Down
2 changes: 1 addition & 1 deletion example/pubspec.lock
Original file line number Diff line number Diff line change
Expand Up @@ -118,7 +118,7 @@ packages:
path: ".."
relative: true
source: path
version: "0.0.1"
version: "0.0.4"
leak_tracker:
dependency: transitive
description:
Expand Down
2 changes: 1 addition & 1 deletion lib/src/chat_message.dart
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
part of '../lcpp.dart';
part of 'package:lcpp/lcpp.dart';

typedef _ChatMessageRecord = (String role, String content);

Expand Down
2 changes: 1 addition & 1 deletion lib/src/llama.dart
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
part of '../lcpp.dart';
part of 'package:lcpp/lcpp.dart';

/// An abstract interface class representing a Llama library.
///
Expand Down
2 changes: 1 addition & 1 deletion lib/src/llama_exception.dart
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
part of '../lcpp.dart';
part of 'package:lcpp/lcpp.dart';

/// A custom exception class for handling errors specific to the Llama application.
///
Expand Down
2 changes: 1 addition & 1 deletion lib/src/llama_isolated.dart
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
part of '../lcpp.dart';
part of 'package:lcpp/lcpp.dart';

typedef _IsolateArguments = ({
ModelParams modelParams,
Expand Down
2 changes: 1 addition & 1 deletion lib/src/llama_native.dart
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
part of '../lcpp.dart';
part of 'package:lcpp/lcpp.dart';

/// A class that implements the Llama interface and provides functionality
/// for loading and interacting with a Llama model, context, and sampler.
Expand Down
2 changes: 1 addition & 1 deletion lib/src/params/context_params.dart
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
// ignore_for_file: constant_identifier_names
part of '../../lcpp.dart';
part of 'package:lcpp/lcpp.dart';

/// A class representing the parameters for context configuration.
class ContextParams {
Expand Down
2 changes: 1 addition & 1 deletion lib/src/params/model_params.dart
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
part of '../../lcpp.dart';
part of 'package:lcpp/lcpp.dart';

/// A class representing the parameters for a model.
///
Expand Down
2 changes: 1 addition & 1 deletion lib/src/params/sampling_params.dart
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
part of '../../lcpp.dart';
part of 'package:lcpp/lcpp.dart';

/// Arguments for Top-P sampling.
class TopPArguments {
Expand Down
2 changes: 1 addition & 1 deletion pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name: lcpp
description: "lcpp is a dart implementation of llama.cpp used by the mobile artificial intelligence distribution (maid)"
version: 0.0.4
version: 0.0.5
homepage: "https://github.com/Mobile-Artificial-Intelligence/llama_dart"

environment:
Expand Down

0 comments on commit 35a66e5

Please sign in to comment.